summaryrefslogtreecommitdiff
path: root/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
parent33da54afb2f8d5d0d42f188d6d0bb03e6eac3423 (diff)
Fix handling of settings navigation icon
Diffstat (limited to 'js')
-rw-r--r--js/codeq/navigation.js2
-rw-r--r--js/codeq/settings.js6
2 files changed, 6 insertions, 2 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();
});
diff --git a/js/codeq/settings.js b/js/codeq/settings.js
index 980aba3..1f35abf 100644
--- a/js/codeq/settings.js
+++ b/js/codeq/settings.js
@@ -21,7 +21,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
(function(){
"use strict";
- var guiLangSelect = $('#gui_lang_select'),
+ var navigationSettings = $('#navigation-settings'),
+ guiLangSelect = $('#gui_lang_select'),
robotAddressInput = $('#robot_address_input'),
jqDisabledOverlay = $('#disabled'),
jqSettForm = $("#settingsForm"),
@@ -41,6 +42,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
'enter':function(){
jqDisabledOverlay.css('display', '');
+ navigationSettings.addClass('active');
+
robotAddressInput.val(codeq.settings['robot_address']);//set the robot address once we enter the state
var previousGuiLang = codeq.settings['gui_lang'];
var previousLayout = codeq.settings['gui_layout'];
@@ -91,6 +94,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
guiLangSelect.off('select');
robotAddressInput.val('');
jqScreenSettings.css('display', 'none');
+ navigationSettings.removeClass('active');
}
});
})();