Skip to content

Commit

Permalink
Added Space between ===
Browse files Browse the repository at this point in the history
  • Loading branch information
nijinnarayanan committed Feb 13, 2015
1 parent 4e8e466 commit 3a147d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/popup/popup.js
Expand Up @@ -44,10 +44,10 @@ st.popup.PopupView = function() {

/* Keyevent for prev & next page navigation */
document.addEventListener('keyup',function(e){
if(e.keyCode===37){ // left
if(e.keyCode === 37){ // left
ctx.handlers.prev.call(ctx);
}
if(e.keyCode===39){ // right
if(e.keyCode === 39){ // right
ctx.handlers.next.call(ctx);
}
});
Expand Down

0 comments on commit 3a147d2

Please sign in to comment.