Browse Source

models and stores

es6
guy 7 years ago
parent
commit
73a3ca9e99
  1. 2
      bi/core.js
  2. 2
      dist/bundle.js
  3. 2
      dist/bundle.min.js
  4. 2
      dist/core.js
  5. 2
      src/core/store.js

2
bi/core.js

@ -21720,7 +21720,7 @@ $.extend(String, {
}
});;(function () {
var kv = {};
BI.models = function (xtype, cls) {
BI.stores = function (xtype, cls) {
if (kv[xtype] != null) {
throw ("stores:[" + xtype + "] has been registed");
}

2
dist/bundle.js vendored

@ -21720,7 +21720,7 @@ $.extend(String, {
}
});;(function () {
var kv = {};
BI.models = function (xtype, cls) {
BI.stores = function (xtype, cls) {
if (kv[xtype] != null) {
throw ("stores:[" + xtype + "] has been registed");
}

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -21720,7 +21720,7 @@ $.extend(String, {
}
});;(function () {
var kv = {};
BI.models = function (xtype, cls) {
BI.stores = function (xtype, cls) {
if (kv[xtype] != null) {
throw ("stores:[" + xtype + "] has been registed");
}

2
src/core/store.js

@ -1,6 +1,6 @@
;(function () {
var kv = {};
BI.models = function (xtype, cls) {
BI.stores = function (xtype, cls) {
if (kv[xtype] != null) {
throw ("stores:[" + xtype + "] has been registed");
}

Loading…
Cancel
Save