guy 7 years ago
parent
commit
d09189cdd1
  1. 2
      bi/core.js
  2. 2
      dist/bundle.js
  3. 6
      dist/bundle.min.js
  4. 2
      dist/core.js
  5. 2
      src/core/mvc/factory/factory.js

2
bi/core.js

@ -11181,7 +11181,7 @@ BI.Factory = {
// //
// } // }
// try { // try {
var view = new (eval(viewFunc))(_.extend({}, vData, { var view = new (this.parsePath(viewFunc)(window))(_.extend({}, vData, {
model: model, model: model,
parent: context, parent: context,
rootURL: url rootURL: url

2
dist/bundle.js vendored

@ -11232,7 +11232,7 @@ BI.Factory = {
// //
// } // }
// try { // try {
var view = new (eval(viewFunc))(_.extend({}, vData, { var view = new (this.parsePath(viewFunc)(window))(_.extend({}, vData, {
model: model, model: model,
parent: context, parent: context,
rootURL: url rootURL: url

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -11181,7 +11181,7 @@ BI.Factory = {
// //
// } // }
// try { // try {
var view = new (eval(viewFunc))(_.extend({}, vData, { var view = new (this.parsePath(viewFunc)(window))(_.extend({}, vData, {
model: model, model: model,
parent: context, parent: context,
rootURL: url rootURL: url

2
src/core/mvc/factory/factory.js

@ -31,7 +31,7 @@ BI.Factory = {
// //
// } // }
// try { // try {
var view = new (eval(viewFunc))(_.extend({}, vData, { var view = new (this.parsePath(viewFunc)(window))(_.extend({}, vData, {
model: model, model: model,
parent: context, parent: context,
rootURL: url rootURL: url

Loading…
Cancel
Save