mirror of
https://github.com/captbaritone/webamp.git
synced 2026-08-02 15:03:53 +00:00
Fix typos
This commit is contained in:
parent
e472baf74f
commit
b81dc72875
2 changed files with 3 additions and 3 deletions
|
|
@ -26,7 +26,7 @@ Hotkeys = {
|
|||
case 96: winamp.openFileDialog(); break; // numpad 0
|
||||
case 97: winamp.previous(10); break; // numpad 1
|
||||
case 98: winamp.incrementVolumeBy(-1); break; // numpad 2
|
||||
case 99: winamp.next(10) break; // numpad 3
|
||||
case 99: winamp.next(10); break; // numpad 3
|
||||
case 100: winamp.previous(); break; // numpad 4
|
||||
case 101: winamp.play(); break; // numpad 5
|
||||
case 102: winamp.next(); break; // numpad 6
|
||||
|
|
|
|||
|
|
@ -264,8 +264,8 @@ Winamp = {
|
|||
},
|
||||
|
||||
toggleTimeMode: function() {
|
||||
self.nodes.time.classList.toggle('countdown');
|
||||
self.updateTime();
|
||||
this.nodes.time.classList.toggle('countdown');
|
||||
this.updateTime();
|
||||
},
|
||||
|
||||
previous: function(num) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue