# HG changeset patch # User Nicholas Jillings # Date 1448620312 0 # Node ID ff76f21403cb9b0a73190a7ced5387fff7cf6d8d # Parent 9c4118f2479081eb48b7cdbca71cb0729a7d8b89 APE new drag: Tested on OSX (Chrome, Firefox, Safari) and Win10 (Chrome, Firefox). Working. diff -r 9c4118f24790 -r ff76f21403cb ape.js --- a/ape.js Fri Nov 27 10:23:47 2015 +0000 +++ b/ape.js Fri Nov 27 10:31:52 2015 +0000 @@ -405,10 +405,14 @@ }); - $('.track-slider').mousedown(function() { + $('.track-slider').mousedown(function(event) { clicking = this.getAttribute('trackIndex'); }); + $('.track-slider').mousemove(function(event) { + event.preventDefault(); + }); + $('#slider').mousemove(function(event) { event.preventDefault(); if (clicking == -1)