summaryrefslogtreecommitdiff
path: root/js/codeq/navigation.js
diff options
context:
space:
mode:
authorRobert Zorko <robertz@gurucue.com>2015-10-15 11:19:25 +0200
committerRobert Zorko <robertz@gurucue.com>2015-10-15 11:19:25 +0200
commit9e75e05583b9ae07e86438c63bcc2dc22be05fea (patch)
tree6ef0bc5c5a17e3f99262d02f58b29e84905215b2 /js/codeq/navigation.js
parent751ee468a0f996da42bccc65a9dfee5a7b243352 (diff)
AAI login is moved to its own screen and js file
Diffstat (limited to 'js/codeq/navigation.js')
-rw-r--r--js/codeq/navigation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/navigation.js b/js/codeq/navigation.js
index 9b7a8f7..5dbbf1e 100644
--- a/js/codeq/navigation.js
+++ b/js/codeq/navigation.js
@@ -71,7 +71,7 @@
},
'actualTransition': function (name) {
//check if we are logged in - if we aren't we will always transition to the login state
- if(!codeq.comms.getSid() && name !== "signup"){//we can of course enter the signup state even if not logged in
+ if(!codeq.comms.getSid() && name !== "signup" && name !== "aailogin"){//we can of course enter the signup/aailogin state even if not logged in
name = 'login';//this will cause the following code to transition to the login state instead of the original one given
}