We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff620e commit d756058Copy full SHA for d756058
js/libs/FloatingButton.js
@@ -45,8 +45,9 @@ var FloatingButton = (function() {
45
}
46
47
var applyStyle = function applyStyle(cssStyle) {
48
- Object.keys(cssStyle).map((key) => {
49
- this.dom.style[key] = cssStyle[key];
+ var self = this;
+ Object.keys(cssStyle).map(function(key) {
50
+ self.dom.style[key] = cssStyle[key];
51
});
52
53
0 commit comments