...last getLast...
[mootools.git] / Compatibility / Fx / Fx.js
blob8da142a790e9d62c4919d9869b7d0d79e41b838a
1 Fx.implement({
3         custom: function(from, to){
4                 return this.start(from, to);
5         },
7         clearTimer: function(){
8                 return this.cancel();
9         },
11         stop: function(){
12                 return this.cancel();
13         }
15 });
17 Fx.Base = Fx;