First off - appreciate the good work.
However as I pointed to new build, immediately my app stopped loading with following error:
Uncaught TypeError: Cannot read property 'effect' of undefined ionic.js:2957
(anonymous function) ionic.js:2957
(anonymous function) ionic.js:3157
(anonymous function) ionic.js:7458
As I go next step I see the error is in the line where u do core.effect = {} and the error is uncaught TypeError: Cannot read property “effect” of undefined
// Create namespaces
if (!global.core) {
var core = global.core = { effect : {} };
} else if (!core.effect) {
core.effect = {};
}
core.effect.Animate = {
Any thoughts ?