AudioPlayer: enable change-on-drag

This commit is contained in:
rolux 2012-12-11 22:49:53 +01:00
parent c59061c456
commit f2b2547db2

View file

@ -163,7 +163,9 @@ Ox.AudioPlayer = function(options, self) {
.appendTo(that); .appendTo(that);
self.$positionSlider = Ox.Range({ self.$positionSlider = Ox.Range({
changeOnDrag: true,
max: 1, max: 1,
min: 0,
size: self.positionSliderWidth, size: self.positionSliderWidth,
step: 0.0000001, step: 0.0000001,
}) })
@ -214,6 +216,7 @@ Ox.AudioPlayer = function(options, self) {
.appendTo(that); .appendTo(that);
self.$volumeSlider = Ox.Range({ self.$volumeSlider = Ox.Range({
changeOnDrag: true,
max: 1, max: 1,
min: 0, min: 0,
size: 116, size: 116,