Skip to content

Commit

Permalink
Sync up built files
Browse files Browse the repository at this point in the history
  • Loading branch information
dborzov committed Jan 21, 2015
1 parent 21c04f9 commit 457f0a8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dist/NetVis.js
Expand Up @@ -355,6 +355,21 @@ function NetVis(Options) {
self.render();
};

$(document).on("keydown", function(event) {
console.log("keydown logged!", event);
switch (event.keyCode) {
case 32:
self.play();
break;
case 37:
self.prev();
break;
case 39:
self.next();
break;
}
});

}


Expand Down

0 comments on commit 457f0a8

Please sign in to comment.