From f2b2547db28e51a8116359066d9435f7d4be2435 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 11 Dec 2012 22:49:53 +0100 Subject: [PATCH] AudioPlayer: enable change-on-drag --- source/Ox.UI/js/Audio/AudioPlayer.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/Ox.UI/js/Audio/AudioPlayer.js b/source/Ox.UI/js/Audio/AudioPlayer.js index eccc8d03..22fd2d7c 100644 --- a/source/Ox.UI/js/Audio/AudioPlayer.js +++ b/source/Ox.UI/js/Audio/AudioPlayer.js @@ -163,7 +163,9 @@ Ox.AudioPlayer = function(options, self) { .appendTo(that); self.$positionSlider = Ox.Range({ + changeOnDrag: true, max: 1, + min: 0, size: self.positionSliderWidth, step: 0.0000001, }) @@ -214,6 +216,7 @@ Ox.AudioPlayer = function(options, self) { .appendTo(that); self.$volumeSlider = Ox.Range({ + changeOnDrag: true, max: 1, min: 0, size: 116,