commit/galaxy-central: jgoecks: Fix bug that scrolled Trackster on double click when completely zoomed in.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/440e50875343/ changeset: 440e50875343 user: jgoecks date: 2012-04-04 17:33:26 summary: Fix bug that scrolled Trackster on double click when completely zoomed in. affected #: 1 file diff -r 9ceb68fe691eb50509bf95b0e7641680b993c55d -r 440e50875343ff7d48464826ce819ef5a232882a static/scripts/trackster.js --- a/static/scripts/trackster.js +++ b/static/scripts/trackster.js @@ -1811,7 +1811,7 @@ } }, zoom_in: function (point, container) { - if (this.max_high === 0 || this.high - this.low < this.min_separation) { + if (this.max_high === 0 || this.high - this.low <= this.min_separation) { return; } var span = this.high - this.low, Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket