Skip to content

Commit

Permalink
add toggle button for 'background mode', listening with no graphics. f…
Browse files Browse the repository at this point in the history
…ixes #18 and may help with fixing #16.
  • Loading branch information
mahmoud committed Jun 4, 2015
1 parent 341e5b7 commit 14dd19f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@
$('#titles').click(
make_click_handler($('#titles'), 'notitles')
);
$('#background_mode').click(
function() {$("#area svg").toggle();}
);
$('#hide_rc_box').click(
function() {$("#rc-log").toggle();}
);
Expand Down Expand Up @@ -331,7 +334,8 @@ <h3>Settings</h3>
<label for='titles'>Hide article titles</label></p>
<p><input type="checkbox" name="hide_rc_box" id="hide_rc_box">
<label for="hide_rc_box">Hide recent changes console</label></p>

<p><input type="checkbox" name="background_mode" id="background_mode">
<label for="background_mode">Hide graphics for background listening</label></p>
<h3>Languages</h3>
<div id='lang-boxes'> </div>
<div class='clear'><br/></div>
Expand Down

0 comments on commit 14dd19f

Please sign in to comment.