A me questo mi ha incuriosito:
Codice HTML:
//Fader with start and stop
var startStopFader = new Widget.Fader("startStopDemo", images, { autoStart: false });
Event.observe("startButton", "click", startStopFader.start.bind(startStopFader));
Event.observe("stopButton", "click", startStopFader.stop.bind(startStopFader));
});
Cosi ho provato a cambiarlo in
Codice HTML:
//Fader with start and stop
var startStopFader = new Widget.Fader("startStopDemo", images, { autoStart: false });
Event.observe("startButton", "mouseout", startStopFader.start.bind(startStopFader));
Event.observe("stopButton", "mouseover", startStopFader.stop.bind(startStopFader));
});
Credendo che era la soluzione ma mi sbagliavo. Ciò che cerchi si trova all'interno dei file *.js