guy 6 years ago
parent
commit
919c208076
  1. 20
      dist/bundle.js
  2. 18
      dist/bundle.min.js
  3. 20
      dist/core.js
  4. 20
      dist/fineui.js
  5. 18
      dist/fineui.min.js
  6. 20
      dist/fineui_without_jquery_polyfill.js
  7. 18
      dist/utils.js
  8. 2
      dist/utils.min.js
  9. 18
      src/core/inject.js
  10. 2
      src/core/shortcut.js

20
dist/bundle.js vendored

@ -21873,7 +21873,7 @@ _.extend(BI.OB.prototype, {
var kv = {};
BI.shortcut = function (xtype, cls) {
if (kv[xtype] != null) {
console.error("shortcut:[" + xtype + "] has been registed");
_global.console && console.error("shortcut:[" + xtype + "] has been registed");
}
kv[xtype] = cls;
};
@ -28273,7 +28273,7 @@ BI.extend(BI.DOM, {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {
console.error("constant:[" + xtype + "] has been registed");
_global.console && console.error("constant:[" + xtype + "] has been registed");
}
constantInjection[xtype] = cls;
};
@ -28281,7 +28281,7 @@ BI.extend(BI.DOM, {
var modelInjection = {};
BI.model = function (xtype, cls) {
if (modelInjection[xtype] != null) {
console.error("model:[" + xtype + "] has been registed");
_global.console && console.error("model:[" + xtype + "] has been registed");
}
modelInjection[xtype] = cls;
};
@ -28289,7 +28289,7 @@ BI.extend(BI.DOM, {
var storeInjection = {};
BI.store = function (xtype, cls) {
if (storeInjection[xtype] != null) {
console.error("store:[" + xtype + "] has been registed");
_global.console && console.error("store:[" + xtype + "] has been registed");
}
storeInjection[xtype] = cls;
};
@ -28297,7 +28297,7 @@ BI.extend(BI.DOM, {
var serviceInjection = {};
BI.service = function (xtype, cls) {
if (serviceInjection[xtype] != null) {
console.error("service:[" + xtype + "] has been registed");
_global.console && console.error("service:[" + xtype + "] has been registed");
}
serviceInjection[xtype] = cls;
};
@ -28305,7 +28305,7 @@ BI.extend(BI.DOM, {
var providerInjection = {};
BI.provider = function (xtype, cls) {
if (providerInjection[xtype] != null) {
console.error("provider:[" + xtype + "] has been registed");
_global.console && console.error("provider:[" + xtype + "] has been registed");
}
providerInjection[xtype] = cls;
};
@ -28375,7 +28375,7 @@ BI.extend(BI.DOM, {
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -28389,7 +28389,7 @@ BI.extend(BI.DOM, {
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -28453,7 +28453,7 @@ BI.extend(BI.DOM, {
try {
act(event, config);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
},
@ -28463,7 +28463,7 @@ BI.extend(BI.DOM, {
try {
act.apply(null, args);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
}

18
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

20
dist/core.js vendored

@ -21873,7 +21873,7 @@ _.extend(BI.OB.prototype, {
var kv = {};
BI.shortcut = function (xtype, cls) {
if (kv[xtype] != null) {
console.error("shortcut:[" + xtype + "] has been registed");
_global.console && console.error("shortcut:[" + xtype + "] has been registed");
}
kv[xtype] = cls;
};
@ -28273,7 +28273,7 @@ BI.extend(BI.DOM, {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {
console.error("constant:[" + xtype + "] has been registed");
_global.console && console.error("constant:[" + xtype + "] has been registed");
}
constantInjection[xtype] = cls;
};
@ -28281,7 +28281,7 @@ BI.extend(BI.DOM, {
var modelInjection = {};
BI.model = function (xtype, cls) {
if (modelInjection[xtype] != null) {
console.error("model:[" + xtype + "] has been registed");
_global.console && console.error("model:[" + xtype + "] has been registed");
}
modelInjection[xtype] = cls;
};
@ -28289,7 +28289,7 @@ BI.extend(BI.DOM, {
var storeInjection = {};
BI.store = function (xtype, cls) {
if (storeInjection[xtype] != null) {
console.error("store:[" + xtype + "] has been registed");
_global.console && console.error("store:[" + xtype + "] has been registed");
}
storeInjection[xtype] = cls;
};
@ -28297,7 +28297,7 @@ BI.extend(BI.DOM, {
var serviceInjection = {};
BI.service = function (xtype, cls) {
if (serviceInjection[xtype] != null) {
console.error("service:[" + xtype + "] has been registed");
_global.console && console.error("service:[" + xtype + "] has been registed");
}
serviceInjection[xtype] = cls;
};
@ -28305,7 +28305,7 @@ BI.extend(BI.DOM, {
var providerInjection = {};
BI.provider = function (xtype, cls) {
if (providerInjection[xtype] != null) {
console.error("provider:[" + xtype + "] has been registed");
_global.console && console.error("provider:[" + xtype + "] has been registed");
}
providerInjection[xtype] = cls;
};
@ -28375,7 +28375,7 @@ BI.extend(BI.DOM, {
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -28389,7 +28389,7 @@ BI.extend(BI.DOM, {
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -28453,7 +28453,7 @@ BI.extend(BI.DOM, {
try {
act(event, config);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
},
@ -28463,7 +28463,7 @@ BI.extend(BI.DOM, {
try {
act.apply(null, args);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
}

20
dist/fineui.js vendored

@ -22094,7 +22094,7 @@ _.extend(BI.OB.prototype, {
var kv = {};
BI.shortcut = function (xtype, cls) {
if (kv[xtype] != null) {
console.error("shortcut:[" + xtype + "] has been registed");
_global.console && console.error("shortcut:[" + xtype + "] has been registed");
}
kv[xtype] = cls;
};
@ -28494,7 +28494,7 @@ BI.extend(BI.DOM, {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {
console.error("constant:[" + xtype + "] has been registed");
_global.console && console.error("constant:[" + xtype + "] has been registed");
}
constantInjection[xtype] = cls;
};
@ -28502,7 +28502,7 @@ BI.extend(BI.DOM, {
var modelInjection = {};
BI.model = function (xtype, cls) {
if (modelInjection[xtype] != null) {
console.error("model:[" + xtype + "] has been registed");
_global.console && console.error("model:[" + xtype + "] has been registed");
}
modelInjection[xtype] = cls;
};
@ -28510,7 +28510,7 @@ BI.extend(BI.DOM, {
var storeInjection = {};
BI.store = function (xtype, cls) {
if (storeInjection[xtype] != null) {
console.error("store:[" + xtype + "] has been registed");
_global.console && console.error("store:[" + xtype + "] has been registed");
}
storeInjection[xtype] = cls;
};
@ -28518,7 +28518,7 @@ BI.extend(BI.DOM, {
var serviceInjection = {};
BI.service = function (xtype, cls) {
if (serviceInjection[xtype] != null) {
console.error("service:[" + xtype + "] has been registed");
_global.console && console.error("service:[" + xtype + "] has been registed");
}
serviceInjection[xtype] = cls;
};
@ -28526,7 +28526,7 @@ BI.extend(BI.DOM, {
var providerInjection = {};
BI.provider = function (xtype, cls) {
if (providerInjection[xtype] != null) {
console.error("provider:[" + xtype + "] has been registed");
_global.console && console.error("provider:[" + xtype + "] has been registed");
}
providerInjection[xtype] = cls;
};
@ -28596,7 +28596,7 @@ BI.extend(BI.DOM, {
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -28610,7 +28610,7 @@ BI.extend(BI.DOM, {
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -28674,7 +28674,7 @@ BI.extend(BI.DOM, {
try {
act(event, config);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
},
@ -28684,7 +28684,7 @@ BI.extend(BI.DOM, {
try {
act.apply(null, args);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
}

18
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

20
dist/fineui_without_jquery_polyfill.js vendored

@ -12258,7 +12258,7 @@ _.extend(BI.OB.prototype, {
var kv = {};
BI.shortcut = function (xtype, cls) {
if (kv[xtype] != null) {
console.error("shortcut:[" + xtype + "] has been registed");
_global.console && console.error("shortcut:[" + xtype + "] has been registed");
}
kv[xtype] = cls;
};
@ -18067,7 +18067,7 @@ BI.extend(BI.DOM, {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {
console.error("constant:[" + xtype + "] has been registed");
_global.console && console.error("constant:[" + xtype + "] has been registed");
}
constantInjection[xtype] = cls;
};
@ -18075,7 +18075,7 @@ BI.extend(BI.DOM, {
var modelInjection = {};
BI.model = function (xtype, cls) {
if (modelInjection[xtype] != null) {
console.error("model:[" + xtype + "] has been registed");
_global.console && console.error("model:[" + xtype + "] has been registed");
}
modelInjection[xtype] = cls;
};
@ -18083,7 +18083,7 @@ BI.extend(BI.DOM, {
var storeInjection = {};
BI.store = function (xtype, cls) {
if (storeInjection[xtype] != null) {
console.error("store:[" + xtype + "] has been registed");
_global.console && console.error("store:[" + xtype + "] has been registed");
}
storeInjection[xtype] = cls;
};
@ -18091,7 +18091,7 @@ BI.extend(BI.DOM, {
var serviceInjection = {};
BI.service = function (xtype, cls) {
if (serviceInjection[xtype] != null) {
console.error("service:[" + xtype + "] has been registed");
_global.console && console.error("service:[" + xtype + "] has been registed");
}
serviceInjection[xtype] = cls;
};
@ -18099,7 +18099,7 @@ BI.extend(BI.DOM, {
var providerInjection = {};
BI.provider = function (xtype, cls) {
if (providerInjection[xtype] != null) {
console.error("provider:[" + xtype + "] has been registed");
_global.console && console.error("provider:[" + xtype + "] has been registed");
}
providerInjection[xtype] = cls;
};
@ -18169,7 +18169,7 @@ BI.extend(BI.DOM, {
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -18183,7 +18183,7 @@ BI.extend(BI.DOM, {
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -18247,7 +18247,7 @@ BI.extend(BI.DOM, {
try {
act(event, config);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
},
@ -18257,7 +18257,7 @@ BI.extend(BI.DOM, {
try {
act.apply(null, args);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
}

18
dist/utils.js vendored

@ -13506,7 +13506,7 @@ _.extend(BI.OB.prototype, {
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {
console.error("constant:[" + xtype + "] has been registed");
_global.console && console.error("constant:[" + xtype + "] has been registed");
}
constantInjection[xtype] = cls;
};
@ -13514,7 +13514,7 @@ _.extend(BI.OB.prototype, {
var modelInjection = {};
BI.model = function (xtype, cls) {
if (modelInjection[xtype] != null) {
console.error("model:[" + xtype + "] has been registed");
_global.console && console.error("model:[" + xtype + "] has been registed");
}
modelInjection[xtype] = cls;
};
@ -13522,7 +13522,7 @@ _.extend(BI.OB.prototype, {
var storeInjection = {};
BI.store = function (xtype, cls) {
if (storeInjection[xtype] != null) {
console.error("store:[" + xtype + "] has been registed");
_global.console && console.error("store:[" + xtype + "] has been registed");
}
storeInjection[xtype] = cls;
};
@ -13530,7 +13530,7 @@ _.extend(BI.OB.prototype, {
var serviceInjection = {};
BI.service = function (xtype, cls) {
if (serviceInjection[xtype] != null) {
console.error("service:[" + xtype + "] has been registed");
_global.console && console.error("service:[" + xtype + "] has been registed");
}
serviceInjection[xtype] = cls;
};
@ -13538,7 +13538,7 @@ _.extend(BI.OB.prototype, {
var providerInjection = {};
BI.provider = function (xtype, cls) {
if (providerInjection[xtype] != null) {
console.error("provider:[" + xtype + "] has been registed");
_global.console && console.error("provider:[" + xtype + "] has been registed");
}
providerInjection[xtype] = cls;
};
@ -13608,7 +13608,7 @@ _.extend(BI.OB.prototype, {
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -13622,7 +13622,7 @@ _.extend(BI.OB.prototype, {
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -13686,7 +13686,7 @@ _.extend(BI.OB.prototype, {
try {
act(event, config);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
},
@ -13696,7 +13696,7 @@ _.extend(BI.OB.prototype, {
try {
act.apply(null, args);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
}

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

18
src/core/inject.js

@ -2,7 +2,7 @@
var constantInjection = {};
BI.constant = function (xtype, cls) {
if (constantInjection[xtype] != null) {
console.error("constant:[" + xtype + "] has been registed");
_global.console && console.error("constant:[" + xtype + "] has been registed");
}
constantInjection[xtype] = cls;
};
@ -10,7 +10,7 @@
var modelInjection = {};
BI.model = function (xtype, cls) {
if (modelInjection[xtype] != null) {
console.error("model:[" + xtype + "] has been registed");
_global.console && console.error("model:[" + xtype + "] has been registed");
}
modelInjection[xtype] = cls;
};
@ -18,7 +18,7 @@
var storeInjection = {};
BI.store = function (xtype, cls) {
if (storeInjection[xtype] != null) {
console.error("store:[" + xtype + "] has been registed");
_global.console && console.error("store:[" + xtype + "] has been registed");
}
storeInjection[xtype] = cls;
};
@ -26,7 +26,7 @@
var serviceInjection = {};
BI.service = function (xtype, cls) {
if (serviceInjection[xtype] != null) {
console.error("service:[" + xtype + "] has been registed");
_global.console && console.error("service:[" + xtype + "] has been registed");
}
serviceInjection[xtype] = cls;
};
@ -34,7 +34,7 @@
var providerInjection = {};
BI.provider = function (xtype, cls) {
if (providerInjection[xtype] != null) {
console.error("provider:[" + xtype + "] has been registed");
_global.console && console.error("provider:[" + xtype + "] has been registed");
}
providerInjection[xtype] = cls;
};
@ -104,7 +104,7 @@
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -118,7 +118,7 @@
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
}
};
@ -182,7 +182,7 @@
try {
act(event, config);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
},
@ -192,7 +192,7 @@
try {
act.apply(null, args);
} catch (e) {
console.error(e);
_global.console && console.error(e);
}
});
}

2
src/core/shortcut.js

@ -2,7 +2,7 @@
var kv = {};
BI.shortcut = function (xtype, cls) {
if (kv[xtype] != null) {
console.error("shortcut:[" + xtype + "] has been registed");
_global.console && console.error("shortcut:[" + xtype + "] has been registed");
}
kv[xtype] = cls;
};

Loading…
Cancel
Save