Cross Reference: anim-node-plugin.js
xref
: /
yui3
/
src
/
anim
/
js
/
anim-node-plugin.js
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
anim-node-plugin.js revision 5977f41bf2914e3174de1e275499c5ccb36e8bae
/**
* Binds an Anim instance to a Node instance
* @module anim
* @namespace Plugin
* @submodule anim-node-plugin
*/
var
NodeFX
=
function
(
config
) {
config
= (
config
) ? Y.
merge
(
config
) : {};
config
.
node
=
config
.
host
;
NodeFX
.
superclass
.
constructor
.
apply
(
this
,
arguments
);
};
NodeFX
.
NAME
=
"nodefx"
;
NodeFX
.
NS
=
"fx"
;
Y.
extend
(
NodeFX
, Y.
Anim
);
Y.
namespace
(
'Plugin'
);
Y.
Plugin
.
NodeFX
=
NodeFX
;