padefla / simile-widgets

Automatically exported from code.google.com/p/simile-widgets
0 stars 0 forks source link

theme.mouseWheel = 'scroll'; not working #391

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Change Line 606 of band.js from:

    if (this._zoomSteps || mouseWheel === 'zoom') {

To this:

    if (this._zoomSteps && mouseWheel === 'zoom') {

greetings André

Original issue reported on code.google.com by a.fied...@oe-konzept.de on 1 Sep 2010 at 9:07

GoogleCodeExporter commented 8 years ago

Original comment by ryan...@csail.mit.edu on 23 Jun 2011 at 10:29

GoogleCodeExporter commented 8 years ago
I had the same prob -- this helped me (though div centering is a (minor) issue 
now):

In band.js in method Timeline._Band.prototype._moveEther replace:

    if (!this._timeline.shiftOK(this._index, shift)) {
        return; // early return
    }

with

    if (!this._timeline.shiftOK(this._index, shift) || this._changing) {
        return; // early return
    }

cheers

Original comment by johannes...@gmail.com on 13 Apr 2012 at 11:04