guy 6 years ago
parent
commit
0b6381237b
  1. 5
      dist/bundle.ie.js
  2. 6
      dist/bundle.ie.min.js
  3. 5
      dist/bundle.js
  4. 6
      dist/bundle.min.js
  5. 5
      dist/core.js
  6. 25
      dist/demo.js
  7. 5
      dist/fineui.ie.js
  8. 6
      dist/fineui.ie.min.js
  9. 5
      dist/fineui.js
  10. 6
      dist/fineui.min.js
  11. 5
      dist/fineui_without_jquery_polyfill.js
  12. 5
      dist/utils.js
  13. 4
      dist/utils.min.js
  14. 5
      src/core/inject.js

5
dist/bundle.ie.js vendored

@ -18537,11 +18537,14 @@ _.extend(BI, {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

6
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/bundle.js vendored

@ -18537,11 +18537,14 @@ _.extend(BI, {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/core.js vendored

@ -18537,11 +18537,14 @@ _.extend(BI, {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

25
dist/demo.js vendored

@ -6126,30 +6126,7 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);Demo.InlineVerticalLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-absolute"
},
render: function () {
return {
type: "bi.inline_vertical_adapt",
items: [{
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 200
}, {
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 100
}]
};
}
});
BI.shortcut("demo.inline_vertical", Demo.InlineVerticalLayout);/**
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

5
dist/fineui.ie.js vendored

@ -18779,11 +18779,14 @@ _.extend(BI, {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

6
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/fineui.js vendored

@ -18779,11 +18779,14 @@ _.extend(BI, {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/fineui_without_jquery_polyfill.js vendored

@ -18283,11 +18283,14 @@ _.extend(BI, {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

5
dist/utils.js vendored

@ -13491,11 +13491,14 @@ if (!_global.BI) {
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

4
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

5
src/core/inject.js

@ -101,11 +101,14 @@
BI.Modules = {
getModule: function (type) {
if(!moduleInjection[type]){
if (!moduleInjection[type]) {
_global.console && console.error("module:[" + type + "] does not exists");
return false;
}
return moduleInjection[type];
},
getAllModules: function () {
return moduleInjection;
}
};

Loading…
Cancel
Save