guy 6 years ago
parent
commit
aa7a9dd64b
  1. 31
      dist/bundle.js
  2. 6
      dist/bundle.min.js
  3. 31
      dist/core.js
  4. 31
      dist/fineui.js
  5. 4
      dist/fineui.min.js
  6. 31
      dist/fineui_without_jquery_polyfill.js
  7. 31
      dist/utils.js
  8. 4
      dist/utils.min.js
  9. 27
      src/core/ob.js

31
dist/bundle.js vendored

@ -11478,7 +11478,31 @@ if (!_global.BI) {
} }
}); });
})();/** })();!(function () {
function extend () {
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy;
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) != null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy) {
continue;
}
if (copy !== undefined) {
target[name] = copy;
}
}
}
}
}
/**
* 客户端观察者主要处理事件的添加删除执行等 * 客户端观察者主要处理事件的添加删除执行等
* @class BI.OB * @class BI.OB
* @abstract * @abstract
@ -11488,7 +11512,7 @@ BI.OB = function (config) {
if (BI.isFunction(this.props)) { if (BI.isFunction(this.props)) {
props = this.props(config); props = this.props(config);
} }
this.options = (_global.$ || _global._).extend(this._defaultConfig(config), props, config); this.options = extend(this._defaultConfig(config), props, config);
this._init(); this._init();
this._initRef(); this._initRef();
}; };
@ -11629,7 +11653,8 @@ _.extend(BI.OB.prototype, {
this._purgeRef(); this._purgeRef();
this.purgeListeners(); this.purgeListeners();
} }
});/** });
})();/**
* Widget超类 * Widget超类
* @class BI.Widget * @class BI.Widget
* @extends BI.OB * @extends BI.OB

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

31
dist/core.js vendored

@ -11478,7 +11478,31 @@ if (!_global.BI) {
} }
}); });
})();/** })();!(function () {
function extend () {
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy;
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) != null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy) {
continue;
}
if (copy !== undefined) {
target[name] = copy;
}
}
}
}
}
/**
* 客户端观察者主要处理事件的添加删除执行等 * 客户端观察者主要处理事件的添加删除执行等
* @class BI.OB * @class BI.OB
* @abstract * @abstract
@ -11488,7 +11512,7 @@ BI.OB = function (config) {
if (BI.isFunction(this.props)) { if (BI.isFunction(this.props)) {
props = this.props(config); props = this.props(config);
} }
this.options = (_global.$ || _global._).extend(this._defaultConfig(config), props, config); this.options = extend(this._defaultConfig(config), props, config);
this._init(); this._init();
this._initRef(); this._initRef();
}; };
@ -11629,7 +11653,8 @@ _.extend(BI.OB.prototype, {
this._purgeRef(); this._purgeRef();
this.purgeListeners(); this.purgeListeners();
} }
});/** });
})();/**
* Widget超类 * Widget超类
* @class BI.Widget * @class BI.Widget
* @extends BI.OB * @extends BI.OB

31
dist/fineui.js vendored

@ -11720,7 +11720,31 @@ if (!_global.BI) {
} }
}); });
})();/** })();!(function () {
function extend () {
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy;
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) != null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy) {
continue;
}
if (copy !== undefined) {
target[name] = copy;
}
}
}
}
}
/**
* 客户端观察者主要处理事件的添加删除执行等 * 客户端观察者主要处理事件的添加删除执行等
* @class BI.OB * @class BI.OB
* @abstract * @abstract
@ -11730,7 +11754,7 @@ BI.OB = function (config) {
if (BI.isFunction(this.props)) { if (BI.isFunction(this.props)) {
props = this.props(config); props = this.props(config);
} }
this.options = (_global.$ || _global._).extend(this._defaultConfig(config), props, config); this.options = extend(this._defaultConfig(config), props, config);
this._init(); this._init();
this._initRef(); this._initRef();
}; };
@ -11871,7 +11895,8 @@ _.extend(BI.OB.prototype, {
this._purgeRef(); this._purgeRef();
this.purgeListeners(); this.purgeListeners();
} }
});/** });
})();/**
* Widget超类 * Widget超类
* @class BI.Widget * @class BI.Widget
* @extends BI.OB * @extends BI.OB

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

31
dist/fineui_without_jquery_polyfill.js vendored

@ -11478,7 +11478,31 @@ if (!_global.BI) {
} }
}); });
})();/** })();!(function () {
function extend () {
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy;
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) != null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy) {
continue;
}
if (copy !== undefined) {
target[name] = copy;
}
}
}
}
}
/**
* 客户端观察者主要处理事件的添加删除执行等 * 客户端观察者主要处理事件的添加删除执行等
* @class BI.OB * @class BI.OB
* @abstract * @abstract
@ -11488,7 +11512,7 @@ BI.OB = function (config) {
if (BI.isFunction(this.props)) { if (BI.isFunction(this.props)) {
props = this.props(config); props = this.props(config);
} }
this.options = (_global.$ || _global._).extend(this._defaultConfig(config), props, config); this.options = extend(this._defaultConfig(config), props, config);
this._init(); this._init();
this._initRef(); this._initRef();
}; };
@ -11629,7 +11653,8 @@ _.extend(BI.OB.prototype, {
this._purgeRef(); this._purgeRef();
this.purgeListeners(); this.purgeListeners();
} }
});/** });
})();/**
* Widget超类 * Widget超类
* @class BI.Widget * @class BI.Widget
* @extends BI.OB * @extends BI.OB

31
dist/utils.js vendored

@ -12237,7 +12237,31 @@ if (!_global.BI) {
} }
}); });
})();/** })();!(function () {
function extend () {
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy;
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) != null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy) {
continue;
}
if (copy !== undefined) {
target[name] = copy;
}
}
}
}
}
/**
* 客户端观察者主要处理事件的添加删除执行等 * 客户端观察者主要处理事件的添加删除执行等
* @class BI.OB * @class BI.OB
* @abstract * @abstract
@ -12247,7 +12271,7 @@ BI.OB = function (config) {
if (BI.isFunction(this.props)) { if (BI.isFunction(this.props)) {
props = this.props(config); props = this.props(config);
} }
this.options = (_global.$ || _global._).extend(this._defaultConfig(config), props, config); this.options = extend(this._defaultConfig(config), props, config);
this._init(); this._init();
this._initRef(); this._initRef();
}; };
@ -12388,7 +12412,8 @@ _.extend(BI.OB.prototype, {
this._purgeRef(); this._purgeRef();
this.purgeListeners(); this.purgeListeners();
} }
});(function () { });
})();(function () {
var _global; var _global;
if (typeof window !== "undefined") { if (typeof window !== "undefined") {
_global = window; _global = window;

4
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

27
src/core/ob.js

@ -1,3 +1,27 @@
!(function () {
function extend () {
var target = arguments[0] || {}, length = arguments.length, i = 1, options, name, src, copy;
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) != null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy) {
continue;
}
if (copy !== undefined) {
target[name] = copy;
}
}
}
}
}
/** /**
* 客户端观察者主要处理事件的添加删除执行等 * 客户端观察者主要处理事件的添加删除执行等
* @class BI.OB * @class BI.OB
@ -8,7 +32,7 @@ BI.OB = function (config) {
if (BI.isFunction(this.props)) { if (BI.isFunction(this.props)) {
props = this.props(config); props = this.props(config);
} }
this.options = (_global.$ || _global._).extend(this._defaultConfig(config), props, config); this.options = extend(this._defaultConfig(config), props, config);
this._init(); this._init();
this._initRef(); this._initRef();
}; };
@ -150,3 +174,4 @@ _.extend(BI.OB.prototype, {
this.purgeListeners(); this.purgeListeners();
} }
}); });
})();
Loading…
Cancel
Save