Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 1068999 - Fix Linter failure. a=bustage
Browse files Browse the repository at this point in the history
  • Loading branch information
rvandermeulen committed Feb 21, 2015
1 parent 82e3bdc commit be86a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/js/media/video_player.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ function VideoPlayer(container) {
// of videos, we make sure that the maximum amount of steps for the entire
// duration is 20, or 2 second increments if the duration is less then 40
// seconds.
var step = Math.max(player.duration/20, 2);
var step = Math.max(player.duration / 20, 2);
if (e.keyCode == e.DOM_VK_DOWN) {
player.currentTime -= step;
} else if (e.keyCode == e.DOM_VK_UP) {
Expand Down

0 comments on commit be86a57

Please sign in to comment.