mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-28 06:32:27 +01:00
Whitespace and semicolon fixes.
This commit is contained in:
6
xulmus/content/player.js
Normal file → Executable file
6
xulmus/content/player.js
Normal file → Executable file
@@ -193,7 +193,7 @@ function Player() // {{{
|
||||
mappings.add([modes.PLAYER],
|
||||
["<C-" + rating + ">"], "Rate the current media item " + rating,
|
||||
function () { player.rateMediaItem(rating); });
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
////////////////// ///////////////////////////////////////////////////////////}}}
|
||||
@@ -306,9 +306,9 @@ function Player() // {{{
|
||||
}
|
||||
|
||||
if (/^[-+]/.test(arg))
|
||||
arg[0] == "-" ? player.seekBackward(value) : player.seekForward(value)
|
||||
arg[0] == "-" ? player.seekBackward(value) : player.seekForward(value);
|
||||
else
|
||||
player.seekTo(value)
|
||||
player.seekTo(value);
|
||||
|
||||
},
|
||||
{ argCount: "1" });
|
||||
|
||||
Reference in New Issue
Block a user