summaryrefslogtreecommitdiff
path: root/js/codeq/navigation.js
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-02-18 14:42:20 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-02-18 14:42:20 +0100
commitf3dfd62eb28d419f2036340de02fc787b0ea044b (patch)
treef5941b4d36c0afb8d4680a9a221b085e0e32a3ef /js/codeq/navigation.js
parent33da54afb2f8d5d0d42f188d6d0bb03e6eac3423 (diff)
Fix handling of settings navigation icon
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 f6f032f..70b7fc5 100644
--- a/js/codeq/navigation.js
+++ b/js/codeq/navigation.js
@@ -206,7 +206,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
codeq.globalStateMachine.transition('changePassword');
e.preventDefault();//prevent this since we'll trigger a page reload otherwise
});
- $('#settingsTrigger').on('click',function(e){
+ $('#navigation-settings').on('click',function(e){
codeq.globalStateMachine.transition('settings');
e.preventDefault();
});