Browse Source

BI-25976 && BI-24616

es6
windy 6 years ago
parent
commit
ddc8b123c1
  1. 2
      dist/_fineui.min.js
  2. 14
      dist/bundle.js
  3. 2
      dist/bundle.min.js
  4. 14
      dist/core.js
  5. 14
      dist/fineui.js
  6. 2
      dist/fineui.min.js
  7. 14
      src/core/controller/controller.bubbles.js

2
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

14
dist/bundle.js vendored

@ -26781,9 +26781,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top - 2});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name))) {
if (!$.isTopSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -26796,9 +26796,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left - 2, top: position.top});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name))) {
if (!$.isLeftSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -26811,9 +26811,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left + 2, top: position.top});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name))) {
if (!$.isRightSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -26826,7 +26826,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top + 2});
this.get(name).invisible();
}
}

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

14
dist/core.js vendored

@ -26781,9 +26781,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top - 2});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name))) {
if (!$.isTopSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -26796,9 +26796,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left - 2, top: position.top});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name))) {
if (!$.isLeftSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -26811,9 +26811,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left + 2, top: position.top});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name))) {
if (!$.isRightSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -26826,7 +26826,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top + 2});
this.get(name).invisible();
}
}

14
dist/fineui.js vendored

@ -27030,9 +27030,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top - 2});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name))) {
if (!$.isTopSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -27045,9 +27045,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left - 2, top: position.top});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name))) {
if (!$.isLeftSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -27060,9 +27060,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left + 2, top: position.top});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name))) {
if (!$.isRightSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -27075,7 +27075,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top + 2});
this.get(name).invisible();
}
}

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

14
src/core/controller/controller.bubbles.js

@ -127,9 +127,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top - 2});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name))) {
if (!$.isTopSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -142,9 +142,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left - 2, top: position.top});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name))) {
if (!$.isLeftSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -157,9 +157,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left + 2, top: position.top});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name))) {
if (!$.isRightSpaceEnough(context, this.get(name), 2)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -172,7 +172,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left, top: position.top});
this.get(name).element.css({left: position.left, top: position.top + 2});
this.get(name).invisible();
}
}

Loading…
Cancel
Save