Skip to content

Commit

Permalink
Updated against suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
anubisthejackle committed Feb 11, 2015
1 parent f2b8ad6 commit 340851a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -605,14 +605,14 @@
switch(e.which) {
case 38: // Up
case 87:
if(Engine.activeModule == Outside || Engine.activeModule == Path)
if(Engine.activeModule == Outside || Engine.activeModule == Path) {
Engine.activeModule.scrollSidebar('up');

}
Engine.log('up');
break;
case 40: // Down
case 83:
if(Engine.activeModule == Outside || Engine.activeModule == Path){
if (Engine.activeModule == Outside || Engine.activeModule == Path) {
Engine.activeModule.scrollSidebar('down');
}
Engine.log('down');
Expand Down

0 comments on commit 340851a

Please sign in to comment.