Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebragger committed May 12, 2009
1 parent d5e16ea commit a640e27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

$(document).ready(function(){
$('body').upUpDownDown({
watchFor: '38384040373937396665', // String of keyCode and charCodes to watch for
// 38384040373937396665 == up up down down left right left right B A
watchFor: [38,38,40,40,37,39,37,39,66,65], // Array of keyCode and charCodes to watch for
// [38,38,40,40,37,39,37,39,66,65] == up up down down left right left right B A
callback: function(){
// Do some fancy shit here.
}
Expand Down
3 changes: 1 addition & 2 deletions konamicode.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
$(document).ready(function(){
$('body').upUpDownDown({
watchFor: '38384040373937396665', // String of keyCode and charCodes to watch for
// 38384040373937396665 == up up down down left right left right B A
watchFor: [38,38,40,40,37,39,37,39,66,65],
callback: function(){
// Do some fancy shit here.
}
Expand Down

0 comments on commit a640e27

Please sign in to comment.