Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WebTV: Remove unused parameters to navup/navdown
  • Loading branch information
ProfYaffle authored and perexg committed Oct 20, 2014
1 parent fad648d commit a9c2ebb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webui/static/tv.js
Expand Up @@ -379,11 +379,11 @@ tv.ui.ChannelList = Ext.extend(Ext.DataView, {
switch(e.getKey()) {

case VK_UP:
this.fireEvent('navup', 1);
this.fireEvent('navup');
break;

case VK_DOWN:
this.fireEvent('navdown', 1);
this.fireEvent('navdown');
break;

case VK_LEFT:
Expand Down

0 comments on commit a9c2ebb

Please sign in to comment.