From 4bfb4b7515f164feae70915fbf30a7b9e109292c Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 25 Mar 2009 02:13:14 +1100 Subject: [PATCH] Add / mappings for seeking. These are the same as "h" and "l". --- xulmus/content/player.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xulmus/content/player.js b/xulmus/content/player.js index 1a95e81a..1984ad56 100755 --- a/xulmus/content/player.js +++ b/xulmus/content/player.js @@ -68,12 +68,12 @@ function Player() // {{{ function () { player.toggleRepeat(); }); mappings.add([modes.PLAYER], - ["h"], "Seek -10s", + ["h", ""], "Seek -10s", function (count) { player.seekBackward(Math.max(1, count) * 10000); }, { flags: Mappings.flags.COUNT }); mappings.add([modes.PLAYER], - ["l"], "Seek +10s", + ["l", ""], "Seek +10s", function (count) { player.seekForward(Math.max(1, count) * 10000); }, { flags: Mappings.flags.COUNT });