Skip to content

Commit

Permalink
v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
FezVrasta committed Apr 20, 2016
1 parent 83a990b commit 0e482dc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.3.6

- 83a990b: fixed #34

## v0.3.5

- c1c4168: fixed #33, error when trying to create a popper inside a `form` element.
Expand Down
10 changes: 5 additions & 5 deletions build/popper.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @fileOverview Kickass library to create and place poppers near their reference elements.
* @version 0.3.5
* @version 0.3.6
* @license
* Copyright (c) 2016 Federico Zivolo and contributors
*
Expand Down Expand Up @@ -285,10 +285,10 @@
popper.textContent = config.content;
}

if (config.arrow) {
var arrow = d.createElement(config.arrow.tagName);
addClassNames(arrow, config.arrow.classNames);
addAttributes(arrow, config.arrow.attributes);
if (config.arrowTagName) {
var arrow = d.createElement(config.arrowTagName);
addClassNames(arrow, config.arrowClassNames);
addAttributes(arrow, config.arrowAttributes);
popper.appendChild(arrow);
}

Expand Down
4 changes: 2 additions & 2 deletions build/popper.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/popper.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "popper.js",
"version": "0.3.5",
"version": "0.3.6",
"description": "",
"main": "src/popper.js",
"scripts": {
Expand Down

0 comments on commit 0e482dc

Please sign in to comment.