From 28e64f9c4d754bd258a788215c8945dd1ac6dd49 Mon Sep 17 00:00:00 2001 From: guy Date: Sun, 9 May 2021 13:42:01 +0800 Subject: [PATCH] bugfix --- src/base/single/tip/tip.bubble.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/single/tip/tip.bubble.js b/src/base/single/tip/tip.bubble.js index de875d2a6..2ba43ef4c 100644 --- a/src/base/single/tip/tip.bubble.js +++ b/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]()] });