From 6f77f398674488540a3174c65ad6cc95fd819927 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Fri, 26 Feb 2016 15:26:54 +0100 Subject: Remove unused id attributes in index.html --- css/codeq.css | 11 +++++++++++ index.html | 18 +++++++++--------- js/codeq/navigation.js | 2 +- 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/css/codeq.css b/css/codeq.css index 33a4c2f..80522c9 100644 --- a/css/codeq.css +++ b/css/codeq.css @@ -105,10 +105,21 @@ button.navbar-toggle > span.glyphicon { margin: 0; } +/* misc */ form { margin-bottom: 0; } +div#disabled { + background-color: rgba(0, 0, 0, 0.7); + cursor: wait; + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; +} + /* modal screens*/ #screen_login, #screen_signup, #screen_change_pass, #screen_settings, #screen_upgrade_to_aai { padding: 15px 0; diff --git a/index.html b/index.html index eb8f093..03c7614 100644 --- a/index.html +++ b/index.html @@ -84,7 +84,7 @@ -
  • Change password
  • + @@ -132,7 +132,7 @@ keep me logged-in - + @@ -207,7 +207,7 @@
    - +
    @@ -248,7 +248,7 @@
    - +
    @@ -281,7 +281,7 @@
    - +
    @@ -446,8 +446,8 @@ @@ -519,7 +519,7 @@ -
    +
    diff --git a/js/codeq/navigation.js b/js/codeq/navigation.js index 70b7fc5..60baa9b 100644 --- a/js/codeq/navigation.js +++ b/js/codeq/navigation.js @@ -202,7 +202,7 @@ along with this program. If not, see . */ codeq.globalStateMachine.transition('about'); e.preventDefault();//prevent this since we'll trigger a page reload otherwise }); - $('#change-password').on('click', function(e){ + $('#navigation-change-password').on('click', function(e){ codeq.globalStateMachine.transition('changePassword'); e.preventDefault();//prevent this since we'll trigger a page reload otherwise }); -- cgit v1.2.1