Merge pull request #52 from jsmouret/master

Fix mouse drag setting the value to NaN if the initial value is negative.
This commit is contained in:
Doug 2015-06-03 11:43:38 -07:00
commit 96e8bc065a

View File

@ -46,7 +46,7 @@ define([
this.__impliedStep = 1; // What are we, psychics? this.__impliedStep = 1; // What are we, psychics?
} else { } else {
// Hey Doug, check this out. // Hey Doug, check this out.
this.__impliedStep = Math.pow(10, Math.floor(Math.log(this.initialValue)/Math.LN10))/10; this.__impliedStep = Math.pow(10, Math.floor(Math.log(Math.abs(this.initialValue))/Math.LN10))/10;
} }
} else { } else {