diff -r 322d0feea350 -r 89ef5ed3c48b src/cm/media/js/lib/yui/yui_3.10.3/build/anim-node-plugin/anim-node-plugin.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui_3.10.3/build/anim-node-plugin/anim-node-plugin.js Tue Jul 16 14:29:46 2013 +0200 @@ -0,0 +1,33 @@ +/* +YUI 3.10.3 (build 2fb5187) +Copyright 2013 Yahoo! Inc. All rights reserved. +Licensed under the BSD License. +http://yuilibrary.com/license/ +*/ + +YUI.add('anim-node-plugin', function (Y, NAME) { + +/** + * Binds an Anim instance to a Node instance + * @module anim + * @class Plugin.NodeFX + * @extends Anim + * @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; + + +}, '3.10.3', {"requires": ["node-pluginhost", "anim-base"]});