guy 7 years ago
parent
commit
05df88313a
  1. 12
      dist/bundle.js
  2. 30
      dist/bundle.min.js
  3. 12
      dist/core.js
  4. 12
      dist/fineui.js
  5. 66
      dist/fineui.min.js
  6. 12
      src/core/inject.js
  7. 12
      utils/utils.js

12
dist/bundle.js vendored

@ -20366,7 +20366,11 @@ BI.extend(BI.DOM, {
if (bfns) {
BI.aspect.before(inst, action, function () {
for (var i = 0, len = bfns.length; i < len; i++) {
bfns[i].apply(inst, arguments);
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}
@ -20374,7 +20378,11 @@ BI.extend(BI.DOM, {
if (afns) {
BI.aspect.after(inst, action, function () {
for (var i = 0, len = afns.length; i < len; i++) {
afns[i].apply(inst, arguments);
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}

30
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/core.js vendored

@ -20366,7 +20366,11 @@ BI.extend(BI.DOM, {
if (bfns) {
BI.aspect.before(inst, action, function () {
for (var i = 0, len = bfns.length; i < len; i++) {
bfns[i].apply(inst, arguments);
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}
@ -20374,7 +20378,11 @@ BI.extend(BI.DOM, {
if (afns) {
BI.aspect.after(inst, action, function () {
for (var i = 0, len = afns.length; i < len; i++) {
afns[i].apply(inst, arguments);
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}

12
dist/fineui.js vendored

@ -20567,7 +20567,11 @@ BI.extend(BI.DOM, {
if (bfns) {
BI.aspect.before(inst, action, function () {
for (var i = 0, len = bfns.length; i < len; i++) {
bfns[i].apply(inst, arguments);
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}
@ -20575,7 +20579,11 @@ BI.extend(BI.DOM, {
if (afns) {
BI.aspect.after(inst, action, function () {
for (var i = 0, len = afns.length; i < len; i++) {
afns[i].apply(inst, arguments);
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}

66
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

12
src/core/inject.js

@ -91,7 +91,11 @@
if (bfns) {
BI.aspect.before(inst, action, function () {
for (var i = 0, len = bfns.length; i < len; i++) {
bfns[i].apply(inst, arguments);
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}
@ -99,7 +103,11 @@
if (afns) {
BI.aspect.after(inst, action, function () {
for (var i = 0, len = afns.length; i < len; i++) {
afns[i].apply(inst, arguments);
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}

12
utils/utils.js

@ -4250,7 +4250,11 @@ _.extend(BI.OB.prototype, {
if (bfns) {
BI.aspect.before(inst, action, function () {
for (var i = 0, len = bfns.length; i < len; i++) {
bfns[i].apply(inst, arguments);
try {
bfns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}
@ -4258,7 +4262,11 @@ _.extend(BI.OB.prototype, {
if (afns) {
BI.aspect.after(inst, action, function () {
for (var i = 0, len = afns.length; i < len; i++) {
afns[i].apply(inst, arguments);
try {
afns[i].apply(inst, arguments);
} catch (e) {
console.error(e);
}
}
});
}

Loading…
Cancel
Save