guy 7 years ago
parent
commit
b1f810bb69
  1. 4
      dist/base.js
  2. 4
      dist/bundle.js
  3. 10
      dist/bundle.min.js
  4. 4
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 4
      src/base/layer/layer.popover.js

4
dist/base.js vendored

@ -15418,12 +15418,12 @@ BI.Popover = BI.inherit(BI.Widget, {
open: function () {
this.show();
this.fireEvent(BI.Popover.EVENT_OPEN);
this.fireEvent(BI.Popover.EVENT_OPEN, arguments);
},
close: function () {
this.hide();
this.fireEvent(BI.Popover.EVENT_CLOSE);
this.fireEvent(BI.Popover.EVENT_CLOSE, arguments);
},
setZindex: function (zindex) {

4
dist/bundle.js vendored

@ -49245,12 +49245,12 @@ BI.Popover = BI.inherit(BI.Widget, {
open: function () {
this.show();
this.fireEvent(BI.Popover.EVENT_OPEN);
this.fireEvent(BI.Popover.EVENT_OPEN, arguments);
},
close: function () {
this.hide();
this.fireEvent(BI.Popover.EVENT_CLOSE);
this.fireEvent(BI.Popover.EVENT_CLOSE, arguments);
},
setZindex: function (zindex) {

10
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -51051,12 +51051,12 @@ BI.Popover = BI.inherit(BI.Widget, {
open: function () {
this.show();
this.fireEvent(BI.Popover.EVENT_OPEN);
this.fireEvent(BI.Popover.EVENT_OPEN, arguments);
},
close: function () {
this.hide();
this.fireEvent(BI.Popover.EVENT_CLOSE);
this.fireEvent(BI.Popover.EVENT_CLOSE, arguments);
},
setZindex: function (zindex) {

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
src/base/layer/layer.popover.js

@ -115,12 +115,12 @@ BI.Popover = BI.inherit(BI.Widget, {
open: function () {
this.show();
this.fireEvent(BI.Popover.EVENT_OPEN);
this.fireEvent(BI.Popover.EVENT_OPEN, arguments);
},
close: function () {
this.hide();
this.fireEvent(BI.Popover.EVENT_CLOSE);
this.fireEvent(BI.Popover.EVENT_CLOSE, arguments);
},
setZindex: function (zindex) {

Loading…
Cancel
Save