mosaic-audio
Advanced tools
Comparing version
33
index.js
@@ -137,28 +137,21 @@ 'use strict'; | ||
var newMargLeft = e.pageX - positionOffset; | ||
var n = void 0; | ||
if (this.props.margin === true) { | ||
if (newMargLeft >= 0 && newMargLeft <= this.timelineWidth) { | ||
this.playHead.style.marginLeft = newMargLeft + 'px'; | ||
}; | ||
if (newMargLeft < 0) { | ||
this.playHead.style.marginLeft = '0px'; | ||
}; | ||
if (newMargLeft > this.timelineWidth) { | ||
this.playHead.style.marginLeft = this.timelineWidth + 'px'; | ||
}; | ||
n = this.playHead.style.paddingLeft; | ||
} else { | ||
if (newMargLeft >= 0 && newMargLeft <= this.timelineWidth) { | ||
this.playHead.style.paddingLeft = newMargLeft + 'px'; | ||
}; | ||
n = this.playHead.style.width; | ||
}; | ||
if (newMargLeft < 0) { | ||
this.playHead.style.paddingLeft = '0px'; | ||
}; | ||
if (newMargLeft >= 0 && newMargLeft <= this.timelineWidth) { | ||
n = newMargLeft + 'px'; | ||
}; | ||
if (newMargLeft > this.timelineWidth) { | ||
this.playHead.style.paddingLeft = this.timelineWidth + 'px'; | ||
}; | ||
if (newMargLeft < 0) { | ||
n = '0px'; | ||
}; | ||
if (newMargLeft > this.timelineWidth) { | ||
n = this.timelineWidth + 'px'; | ||
}; | ||
}, | ||
@@ -165,0 +158,0 @@ |
{ | ||
"name": "mosaic-audio", | ||
"version": "0.15.6", | ||
"version": "0.15.7", | ||
"description": "A React audio wrapper for the HTML media element.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
10404
-3.3%201
-2.9%