Skip to content

Commit

Permalink
making the bottom button on remote show/hide footer
Browse files Browse the repository at this point in the history
The button is "stop", but there's really no equivalent of
that in showoff, so showing/hidding the footer seems
convenient.
  • Loading branch information
davetron5000 committed Apr 12, 2010
1 parent bbf65e6 commit 77bad42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/showoff.js
Expand Up @@ -297,7 +297,7 @@ function keyDown(event)
{
$('#help').toggle()
}
else if (key == 70) // f for footer
else if (key == 66 || key == 70) // f for footer (also "b" which is what kensington remote "stop" button sends
{
$('#footer').toggle()
}
Expand Down

0 comments on commit 77bad42

Please sign in to comment.