You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var App = require('core');
App.MapModule = Alloy.Globals.MapModule;
App.globalWindow = $.index;
App.globalWindow.open();
App.init();
//Check for login and then
App.Navigator.open('signin');
signin.js
var App = require('core');
$.login.addEventListener('click',function(){
App.Navigator.open('register');
});
register.js
var App = require('core');
$.nav.getView('back').addEventListener('click',function(){
App.Navigator.close();
});
The close method works!, the register View is closed but the before controller (signin) just show a "white" screen and not the elements...
Any idea why?
The text was updated successfully, but these errors were encountered:
I have this:
index.xml
index.js
signin.js
register.js
The close method works!, the register View is closed but the before controller (signin) just show a "white" screen and not the elements...
Any idea why?
The text was updated successfully, but these errors were encountered: