dailer 5 years ago
parent
commit
42fa030ac6
  1. 2
      dist/2.0/fineui.ie.js
  2. 64
      dist/2.0/fineui.ie.min.js
  3. 27
      dist/2.0/fineui.js
  4. 2
      dist/2.0/fineui.min.css
  5. 64
      dist/2.0/fineui.min.js
  6. 2
      dist/bundle.ie.js
  7. 64
      dist/bundle.ie.min.js
  8. 27
      dist/bundle.js
  9. 2
      dist/bundle.min.css
  10. 64
      dist/bundle.min.js
  11. 2
      dist/core.js
  12. 2
      dist/fineui.ie.js
  13. 70
      dist/fineui.ie.min.js
  14. 26
      dist/fineui.js
  15. 2
      dist/fineui.min.css
  16. 68
      dist/fineui.min.js
  17. 24
      dist/fineui_without_jquery_polyfill.js
  18. 4
      dist/utils.min.js

2
dist/2.0/fineui.ie.js vendored

@ -21696,7 +21696,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";

64
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

27
dist/2.0/fineui.js vendored

@ -21696,7 +21696,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";
@ -88828,7 +88828,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
});
BI.ValueChooserPane.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
function initWatch(vm, watch) {
function initWatch (vm, watch) {
vm._watchers || (vm._watchers = []);
for (var key in watch) {
var handler = watch[key];
@ -88842,7 +88842,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}
}
function createWatcher(vm, keyOrFn, handler) {
function createWatcher (vm, keyOrFn, handler) {
return Fix.watch(vm.model, keyOrFn, _.bind(handler, vm), {
store: vm.store
});
@ -88851,24 +88851,24 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var target = null;
var targetStack = [];
function pushTarget(_target) {
function pushTarget (_target) {
if (target) targetStack.push(target);
Fix.Model.target = target = _target;
}
function popTarget() {
function popTarget () {
Fix.Model.target = target = targetStack.pop();
}
var context = null;
var contextStack = [];
function pushContext(_context) {
function pushContext (_context) {
if (context) contextStack.push(context);
Fix.Model.context = context = _context;
}
function popContext() {
function popContext () {
Fix.Model.context = context = contextStack.pop();
}
@ -88889,7 +88889,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}, options);
};
function findStore(widget) {
function findStore (widget) {
if (target != null) {
return target;
}
@ -88935,7 +88935,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
};
});
function createStore() {
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this.options.element);
@ -89001,7 +89001,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -89075,7 +89079,8 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
};
}
BI.watch = Fix.watch;
}());(function () {
}());
(function () {
var Events = {
// Bind an event to a `callback` function. Passing `"all"` will bind

2
dist/2.0/fineui.min.css vendored

File diff suppressed because one or more lines are too long

64
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.ie.js vendored

@ -21696,7 +21696,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";

64
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

27
dist/bundle.js vendored

@ -21696,7 +21696,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";
@ -88828,7 +88828,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
});
BI.ValueChooserPane.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
function initWatch(vm, watch) {
function initWatch (vm, watch) {
vm._watchers || (vm._watchers = []);
for (var key in watch) {
var handler = watch[key];
@ -88842,7 +88842,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}
}
function createWatcher(vm, keyOrFn, handler) {
function createWatcher (vm, keyOrFn, handler) {
return Fix.watch(vm.model, keyOrFn, _.bind(handler, vm), {
store: vm.store
});
@ -88851,24 +88851,24 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var target = null;
var targetStack = [];
function pushTarget(_target) {
function pushTarget (_target) {
if (target) targetStack.push(target);
Fix.Model.target = target = _target;
}
function popTarget() {
function popTarget () {
Fix.Model.target = target = targetStack.pop();
}
var context = null;
var contextStack = [];
function pushContext(_context) {
function pushContext (_context) {
if (context) contextStack.push(context);
Fix.Model.context = context = _context;
}
function popContext() {
function popContext () {
Fix.Model.context = context = contextStack.pop();
}
@ -88889,7 +88889,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}, options);
};
function findStore(widget) {
function findStore (widget) {
if (target != null) {
return target;
}
@ -88935,7 +88935,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
};
});
function createStore() {
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this.options.element);
@ -89001,7 +89001,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -89075,7 +89079,8 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
};
}
BI.watch = Fix.watch;
}());(function () {
}());
(function () {
var Events = {
// Bind an event to a `callback` function. Passing `"all"` will bind

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

64
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -21696,7 +21696,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";

2
dist/fineui.ie.js vendored

@ -21941,7 +21941,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";

70
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

26
dist/fineui.js vendored

@ -21941,7 +21941,7 @@ BI.prepares.push(function () {
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
BI.defer(fn);
fn();
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";
@ -89657,7 +89657,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
// Create the default BI.history.
BI.history = new History;
}());;(function () {
function initWatch(vm, watch) {
function initWatch (vm, watch) {
vm._watchers || (vm._watchers = []);
for (var key in watch) {
var handler = watch[key];
@ -89671,7 +89671,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
}
}
function createWatcher(vm, keyOrFn, handler) {
function createWatcher (vm, keyOrFn, handler) {
return Fix.watch(vm.model, keyOrFn, _.bind(handler, vm), {
store: vm.store
});
@ -89680,24 +89680,24 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
var target = null;
var targetStack = [];
function pushTarget(_target) {
function pushTarget (_target) {
if (target) targetStack.push(target);
Fix.Model.target = target = _target;
}
function popTarget() {
function popTarget () {
Fix.Model.target = target = targetStack.pop();
}
var context = null;
var contextStack = [];
function pushContext(_context) {
function pushContext (_context) {
if (context) contextStack.push(context);
Fix.Model.context = context = _context;
}
function popContext() {
function popContext () {
Fix.Model.context = context = contextStack.pop();
}
@ -89718,7 +89718,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
}, options);
};
function findStore(widget) {
function findStore (widget) {
if (target != null) {
return target;
}
@ -89764,7 +89764,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
};
});
function createStore() {
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this.options.element);
@ -89830,7 +89830,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -89904,4 +89908,4 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);(function () {
};
}
BI.watch = Fix.watch;
}());
}());

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

68
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

24
dist/fineui_without_jquery_polyfill.js vendored

@ -71679,7 +71679,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
});
BI.ValueChooserPane.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
function initWatch(vm, watch) {
function initWatch (vm, watch) {
vm._watchers || (vm._watchers = []);
for (var key in watch) {
var handler = watch[key];
@ -71693,7 +71693,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}
}
function createWatcher(vm, keyOrFn, handler) {
function createWatcher (vm, keyOrFn, handler) {
return Fix.watch(vm.model, keyOrFn, _.bind(handler, vm), {
store: vm.store
});
@ -71702,24 +71702,24 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var target = null;
var targetStack = [];
function pushTarget(_target) {
function pushTarget (_target) {
if (target) targetStack.push(target);
Fix.Model.target = target = _target;
}
function popTarget() {
function popTarget () {
Fix.Model.target = target = targetStack.pop();
}
var context = null;
var contextStack = [];
function pushContext(_context) {
function pushContext (_context) {
if (context) contextStack.push(context);
Fix.Model.context = context = _context;
}
function popContext() {
function popContext () {
Fix.Model.context = context = contextStack.pop();
}
@ -71740,7 +71740,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}, options);
};
function findStore(widget) {
function findStore (widget) {
if (target != null) {
return target;
}
@ -71786,7 +71786,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
};
});
function createStore() {
function createStore () {
var needPop = false;
if (_global.Fix && this._store) {
var store = findStore(this.options.context || this.options.element);
@ -71852,7 +71852,11 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
var old = BI.Widget.prototype[name];
old && (BI.Widget.prototype[name] = function () {
this.store && pushTarget(this.store);
var res = old.apply(this, arguments);
try {
var res = old.apply(this, arguments);
} catch (e) {
console.error(e);
}
this.store && popTarget();
return res;
});
@ -71926,4 +71930,4 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
};
}
BI.watch = Fix.watch;
}());
}());

4
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save