[Solved] Ember locks up on afterModel: ()

By putting this._super(model, transition) into the afterModel hook this stops locking up. I think it has something to do with it using ember-simple-auth addon which requires using a mixin on pages that use the addon. solved Ember locks up on afterModel: ()

[Solved] history.back() not working in phonegap ios build

Yes, exactly. In several version iOS, Android ( old), history.back() seem not working. To fix it, you should try this code ( i find it in JQM @@ and it working well for all ) var nav = window.navigator; if( this.phonegapNavigationEnabled && nav && nav.app && nav.app.backHistory ){ nav.app.backHistory(); } else { window.history.back(); } solved … Read more