repo.or.cz
/
mootools
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
whitespace cleanup
[mootools/dkf.git]
/
Compatibility
/
Fx
/
Fx.Tween.js
blob
1ef9ee122e3050248c4a254e6897a26fb4358048
1
Fx.Style = function(element, property, options){
2
return new Fx.Tween(element, $extend({property: property}, options));
3
};
4
5
Element.implement({
6
7
effect: function(property, options){
8
return new Fx.Tween(this, $extend({property: property}, options));
9
}
10
11
});