From abe15553836f5abbe156589fdcd64f4c1db4341a Mon Sep 17 00:00:00 2001 From: Arpad Csanyi Date: Fri, 20 May 2016 19:15:18 +0200 Subject: [PATCH] Change order of options to match the order of left modifiers. This is more logical when one is reading through the options than having the right modifiers in reverse order (compared to the left). The previous order of the modifiers matched their order on a standard keyboard when read form left to right. --- script.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/script.js b/script.js index f9802695..9b70606d 100644 --- a/script.js +++ b/script.js @@ -169,20 +169,20 @@ $(function() { label: 'LAlt' }, { - value: 'RAlt', - label: 'RAlt' - }, - { - value: 'RSuper', - label: 'RSuper' + value: 'RShift', + label: 'RShift' }, { value: 'RCtrl', label: 'RCtrl' }, { - value: 'RShift', - label: 'RShift' + value: 'RSuper', + label: 'RSuper' + }, + { + value: 'RAlt', + label: 'RAlt' } ] },