Wrap text
|
|
var IntinigSlider = Class.create();
IntinigSlider.prototype = {
initialize: function(id, options) {
this.options = Object.extend({
}, arguments[1] || {});
this.working = false;
this.setup();
},
setup: function() {
// attaca l'evento
},
slide: function() {
if(!this.working) {
this.working = true;
new Effect.qualcosa({
afterFinish: this.working = false;
});
}
}
}
|