guy 7 years ago
parent
commit
5e99dd6e40
  1. 6
      dist/bundle.js
  2. 2
      dist/bundle.min.css
  3. 18
      dist/bundle.min.js
  4. 6
      dist/core.js
  5. 6
      dist/fineui.js
  6. 2
      dist/fineui.min.css
  7. 10
      dist/fineui.min.js
  8. 7
      src/core/inject.js
  9. 6
      utils/utils.js

6
dist/bundle.js vendored

@ -20339,6 +20339,12 @@ BI.extend(BI.DOM, {
points[type][action][after ? "after" : "before"].push(pointFn);
};
BI.Constants = {
getConstant: function (type) {
return constantInjection[type];
}
};
var callPoint = function (inst, type) {
if (points[type]) {
for (var action in points[type]) {

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

18
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/core.js vendored

@ -20339,6 +20339,12 @@ BI.extend(BI.DOM, {
points[type][action][after ? "after" : "before"].push(pointFn);
};
BI.Constants = {
getConstant: function (type) {
return constantInjection[type];
}
};
var callPoint = function (inst, type) {
if (points[type]) {
for (var action in points[type]) {

6
dist/fineui.js vendored

@ -20540,6 +20540,12 @@ BI.extend(BI.DOM, {
points[type][action][after ? "after" : "before"].push(pointFn);
};
BI.Constants = {
getConstant: function (type) {
return constantInjection[type];
}
};
var callPoint = function (inst, type) {
if (points[type]) {
for (var action in points[type]) {

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

10
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

7
src/core/inject.js

@ -78,6 +78,12 @@
points[type][action][after ? "after" : "before"].push(pointFn);
};
BI.Constants = {
getConstant: function (type) {
return constantInjection[type];
}
};
var callPoint = function (inst, type) {
if (points[type]) {
for (var action in points[type]) {
@ -100,6 +106,7 @@
}
}
};
BI.Models = {
getModel: function (type, config) {
var inst = new modelInjection[type](config);

6
utils/utils.js

@ -4229,6 +4229,12 @@ _.extend(BI.OB.prototype, {
points[type][action][after ? "after" : "before"].push(pointFn);
};
BI.Constants = {
getConstant: function (type) {
return constantInjection[type];
}
};
var callPoint = function (inst, type) {
if (points[type]) {
for (var action in points[type]) {

Loading…
Cancel
Save