|
|
@ -45,9 +45,11 @@ BI.BubblesController = BI.inherit(BI.Controller, { |
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
type: "bi.default", |
|
|
|
type: "bi.default", |
|
|
|
element: container, |
|
|
|
element: container, |
|
|
|
items: [{ |
|
|
|
items: [ |
|
|
|
el: bubble |
|
|
|
{ |
|
|
|
}] |
|
|
|
el: bubble |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
] |
|
|
|
}); |
|
|
|
}); |
|
|
|
if (this.storePoppers[name]) { |
|
|
|
if (this.storePoppers[name]) { |
|
|
|
this.storePoppers[name].destroy(); |
|
|
|
this.storePoppers[name].destroy(); |
|
|
@ -65,7 +67,14 @@ BI.BubblesController = BI.inherit(BI.Controller, { |
|
|
|
options: { |
|
|
|
options: { |
|
|
|
offset: [adjustXOffset, adjustYOffset] |
|
|
|
offset: [adjustXOffset, adjustYOffset] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
name: "preventOverflow", |
|
|
|
|
|
|
|
enabled: false |
|
|
|
|
|
|
|
}, { |
|
|
|
|
|
|
|
name: "flip", |
|
|
|
|
|
|
|
enabled: false |
|
|
|
|
|
|
|
}, |
|
|
|
] |
|
|
|
] |
|
|
|
}); |
|
|
|
}); |
|
|
|
return this; |
|
|
|
return this; |
|
|
|