1
0
Fork 0
forked from 0x2620/oxjs

use base 10 in parseInt, use Math.floor for numbers

This commit is contained in:
rolux 2012-06-13 10:28:21 +02:00
commit 8bc8c57373
19 changed files with 44 additions and 45 deletions

View file

@ -53,7 +53,7 @@ Ox.LargeVideoTimeline = function(options, self) {
$tooltip: Ox.Tooltip({
animate: false
}),
center: parseInt(self.options.width / 2),
center: Math.floor(self.options.width / 2),
element: that.$element[0],
fps: 25,
height: 64,
@ -154,7 +154,7 @@ Ox.LargeVideoTimeline = function(options, self) {
}
function setPosition() {
self.tile = parseInt(self.options.position * self.fps / self.tileWidth);
self.tile = Math.floor(self.options.position * self.fps / self.tileWidth);
self.$timeline.css({
marginLeft: (-self.options.position * self.fps) + 'px'
});
@ -199,7 +199,7 @@ Ox.LargeVideoTimeline = function(options, self) {
}
function setWidth() {
self.center = parseInt(self.options.width / 2);
self.center = Math.floor(self.options.width / 2);
that.css({
width: self.options.width + 'px'
});