guy 7 years ago
parent
commit
cf96f485d2
  1. 58121
      dist/base.js
  2. 78641
      dist/bundle.js
  3. 20
      dist/bundle.min.js
  4. 10
      dist/case.js
  5. 18600
      dist/core.js
  6. 33
      dist/fix/fix.compact.js
  7. 6
      dist/fix/fix.js
  8. 17050
      src/base/formula/codemirror/codemirror.js
  9. 2
      src/base/sql/codemirrior/sql-mode.js
  10. 1300
      src/base/svg/raphael.js
  11. 3329
      src/base/tree/ztree/jquery.ztree.core-3.5.js
  12. 1188
      src/base/tree/ztree/jquery.ztree.excheck-3.5.js
  13. 10
      src/case/clipboard/clipboard.js
  14. 18746
      src/core/jquery.js

58121
dist/base.js vendored

File diff suppressed because it is too large Load Diff

78641
dist/bundle.js vendored

File diff suppressed because one or more lines are too long

20
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/case.js vendored

@ -2434,9 +2434,9 @@ try {// IE8下会抛错
} else if (is.string(target)) { } else if (is.string(target)) {
return listenSelector(target, type, callback); return listenSelector(target, type, callback);
} }
throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList"); throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList");
} }
/** /**
@ -2627,7 +2627,7 @@ try {// IE8下会抛错
function _interopRequireDefault (obj) { function _interopRequireDefault (obj) {
return obj && obj.__esModule ? obj : { return obj && obj.__esModule ? obj : {
default: obj "default": obj
}; };
} }
@ -2861,7 +2861,7 @@ try {// IE8下会抛错
function _interopRequireDefault (obj) { function _interopRequireDefault (obj) {
return obj && obj.__esModule ? obj : { return obj && obj.__esModule ? obj : {
default: obj "default": obj
}; };
} }
@ -3384,7 +3384,7 @@ try {// IE8下会抛错
try { try {
body.removeChild(this.div); body.removeChild(this.div);
} catch (e) { } catch (e) {
} }
this.domElement = null; this.domElement = null;

18600
dist/core.js vendored

File diff suppressed because it is too large Load Diff

33
dist/fix/fix.compact.js vendored

@ -98,7 +98,10 @@
}); });
}); });
this._watchers && (this._watchers = []); this._watchers && (this._watchers = []);
this.store && (this.store._parent = null, this.store = null); if (this.store) {
this.store._parent && (this.store._parent = null);
this.store = null;
}
}; };
_.each(["_mount"], function (name) { _.each(["_mount"], function (name) {
@ -111,18 +114,20 @@
}); });
}); });
_.each(["each", "map", "reduce", "reduceRight", "find", "filter", "reject", "every", "all", "some", "any", "max", "min", if (BI.isIE9Below()) {
"sortBy", "groupBy", "indexBy", "countBy", "partition", _.each(["each", "map", "reduce", "reduceRight", "find", "filter", "reject", "every", "all", "some", "any", "max", "min",
"keys", "allKeys", "values", "pairs", "invert", "sortBy", "groupBy", "indexBy", "countBy", "partition",
"mapObject", "findKey", "pick", "omit", "tap"], function (name) { "keys", "allKeys", "values", "pairs", "invert",
var old = BI[name]; "mapObject", "findKey", "pick", "omit", "tap"], function (name) {
BI[name] = function (obj, fn) { var old = BI[name];
return typeof fn === "function" ? old(obj, function (key, value) { BI[name] = function (obj, fn) {
if (!(key in Fix.$$skipArray)) { return typeof fn === "function" ? old(obj, function (key, value) {
return fn.apply(this, arguments); if (!(key in Fix.$$skipArray)) {
} return fn.apply(this, arguments);
}) : old.apply(this, arguments); }
}; }) : old.apply(this, arguments);
}); };
});
}
BI.watch = Fix.watch; BI.watch = Fix.watch;
}()); }());

6
dist/fix/fix.js vendored

@ -401,10 +401,10 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
} else { } else {
this.model = this.walk(value); this.model = this.walk(value);
} }
try { if (isIE9Below) {
def(this.model, "__ob__", this);
} catch (e) {
this.model['__ob__'] = this; this.model['__ob__'] = this;
} else {
def(this.model, "__ob__", this);
} }
} }

17050
src/base/formula/codemirror/codemirror.js

File diff suppressed because it is too large Load Diff

2
src/base/sql/codemirrior/sql-mode.js

@ -10,7 +10,7 @@
"use strict"; "use strict";
var client = parserConfig.client || {}, var client = parserConfig.client || {},
atoms = parserConfig.atoms || {false: true, true: true, null: true}, atoms = parserConfig.atoms || {"false": true, "true": true, "null": true},
builtin = parserConfig.builtin || {}, builtin = parserConfig.builtin || {},
keywords = parserConfig.keywords || {}, keywords = parserConfig.keywords || {},
operatorChars = parserConfig.operatorChars || /^[*+\-%<>!=&|~^]/, operatorChars = parserConfig.operatorChars || /^[*+\-%<>!=&|~^]/,

1300
src/base/svg/raphael.js

File diff suppressed because it is too large Load Diff

3329
src/base/tree/ztree/jquery.ztree.core-3.5.js

File diff suppressed because it is too large Load Diff

1188
src/base/tree/ztree/jquery.ztree.excheck-3.5.js

File diff suppressed because it is too large Load Diff

10
src/case/clipboard/clipboard.js

@ -210,9 +210,9 @@ try {// IE8下会抛错
} else if (is.string(target)) { } else if (is.string(target)) {
return listenSelector(target, type, callback); return listenSelector(target, type, callback);
} }
throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList"); throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList");
} }
/** /**
@ -403,7 +403,7 @@ try {// IE8下会抛错
function _interopRequireDefault (obj) { function _interopRequireDefault (obj) {
return obj && obj.__esModule ? obj : { return obj && obj.__esModule ? obj : {
default: obj "default": obj
}; };
} }
@ -637,7 +637,7 @@ try {// IE8下会抛错
function _interopRequireDefault (obj) { function _interopRequireDefault (obj) {
return obj && obj.__esModule ? obj : { return obj && obj.__esModule ? obj : {
default: obj "default": obj
}; };
} }
@ -1160,7 +1160,7 @@ try {// IE8下会抛错
try { try {
body.removeChild(this.div); body.removeChild(this.div);
} catch (e) { } catch (e) {
} }
this.domElement = null; this.domElement = null;

18746
src/core/jquery.js vendored

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save