diff --git a/index.html b/index.html
index 9cdb9f7..fa28c44 100755
--- a/index.html
+++ b/index.html
@@ -45,11 +45,11 @@
- If holding the button and the strip colour is
+ If holding button, release when the timer contains the digit that corresponds to the strip colour:
- - Blue: release when timer has a 4 in any position.
- - Yellow: release when timer has a 5 in any position.
- - Other: release when timer has a 1 in any position.
+ - Blue: 4
+ - Yellow: 5
+ - Other: 1
diff --git a/ktane.css b/ktane.css
index 1605c9e..e1b6729 100755
--- a/ktane.css
+++ b/ktane.css
@@ -130,6 +130,10 @@ nav {
border-style: solid;
border-width: 1px;
}
+#buttonInstruction {
+ background-color: #ddd;
+ padding: 0.5em;
+}
#sectionKeypads ul {
display: inline-block;
diff --git a/ktane.js b/ktane.js
index c72c832..e036f29 100755
--- a/ktane.js
+++ b/ktane.js
@@ -163,20 +163,20 @@ $('section').each(function () {
text = $('input[name="buttonText"]:checked').val();
if (text === 'Detonate') {
- instruction = 'If there is more than 1 battery, press and release; otherwise, hold the button.'
+ instruction = 'If 2+ \ud83d\udd0b, press and release.
Otherwise, hold button.'
} else if (colour === 'white') {
- instruction = 'If there is a lit indicator with label CAR, hold the button. Otherwise, if there are more than 2 batteries and a lit indicator with label FRK, press and release the button. If neither apply, hold the button.'
+ instruction = 'If lit indicator [CAR], hold button.
Otherwise, if 3+ \ud83d\udd0b and lit indicator [FRK], press and release.
Otherwise, hold button.'
} else if (colour === 'blue' && text === 'Abort'
|| colour === 'yellow') {
- instruction = 'Hold the button.';
+ instruction = 'Hold button.';
} else if (colour === 'red' && text === 'Hold') {
- instruction = 'Press and release the button.';
+ instruction = 'Press and release.';
} else {
- instruction = 'If there are more than 2 batteries and a lit indicator with label FRK, press and release the button; otherwise, hold the button.';
+ instruction = 'If 3+ \ud83d\udd0b and lit indicator [FRK], press and release the button.
Otherwise, hold button.';
}
$instruction.html(instruction);
- });
+ }).triggerHandler('click');
})();
(function () {