2
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
3
Code licensed under the BSD License:
4
http://developer.yahoo.net/yui/license.txt
7
YUI.add('anim-node-plugin', function(Y) {
10
* Binds an Anim instance to a Node instance
12
* @submodule anim-node-plugin
15
Y.namespace('Plugin');
16
Y.Plugin.NodeFX = function(config) {
17
config.node = config.owner;
18
Y.Plugin.NodeFX.superclass.constructor.apply(this, arguments);
21
Y.Plugin.NodeFX.NAME = "nodefxplugin";
22
Y.Plugin.NodeFX.NS = "fx";
24
Y.extend(Y.Plugin.NodeFX, Y.Anim);
28
}, '3.0.0pr2' ,{requires:['anim-base', 'node-base']});