make 'never'/'always' clickable

This commit is contained in:
synth-ruiner
2018-01-26 19:26:53 +00:00
parent 68052f4636
commit 6e14842500
4 changed files with 11 additions and 4 deletions

View File

@@ -452,6 +452,14 @@ $(document).ready(function() {
renderThrottled();
});
$('#never').on('click touchend', function() {
$('#threshold').val(0).change();
});
$('#always').on('click touchend', function() {
$('#threshold').val(64).change();
});
$('#save').on('click touchend', function() {
var newGameData = $('textarea').val();