Browse Source

Pull request #1906: bugfix

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit '28e64f9c4d754bd258a788215c8945dd1ac6dd49':
  bugfix
es6
guy 3 years ago
parent
commit
0da758b878
  1. 4
      src/base/single/tip/tip.bubble.js

4
src/base/single/tip/tip.bubble.js

@ -24,7 +24,7 @@ BI.Bubble = BI.inherit(BI.Tip, {
};
this.element.bind({click: fn, mousedown: fn, mouseup: fn, mouseover: fn, mouseenter: fn, mouseleave: fn, mousemove: fn});
BI.createWidget({
type: "bi.left",
type: "bi.adaptive",
element: this,
items: [this["_" + this.options.direction]()]
});
@ -127,7 +127,7 @@ BI.BubbleView = BI.inherit(BI.Single, {
};
this.element.bind({click: fn, mousedown: fn, mouseup: fn, mouseover: fn, mouseenter: fn, mouseleave: fn, mousemove: fn});
BI.createWidget({
type: "bi.left",
type: "bi.adaptive",
element: this,
items: [this["_" + this.options.direction]()]
});

Loading…
Cancel
Save