Skip to content

Commit 923977f

Browse files
committed
v0.2.6
1 parent d8c9d1d commit 923977f

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.2.6
2+
3+
- 6732353: removed shared state;
4+
15
## v0.2.5
26

37
- 77677f0: round top and left coordinates to prevent blur effect;

build/popper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @fileOverview Kickass library to create and place poppers near their reference elements.
3-
* @version 0.2.5
3+
* @version 0.2.6
44
* @license
55
* Copyright (c) 2016 Federico Zivolo and contributors
66
*
@@ -139,6 +139,7 @@
139139
*/
140140
function Popper(trigger, popper, options/*, callback*/) {
141141
this._trigger = trigger;
142+
this.state = {};
142143

143144
// if the popper variable is a configuration object, parse it to generate an HTMLElement
144145
// generate a default popper if is not defined
@@ -184,7 +185,6 @@
184185
}
185186
}
186187

187-
Popper.prototype.state = {};
188188

189189
//
190190
// Methods

0 commit comments

Comments
 (0)