~ubuntu-branches/ubuntu/utopic/moodle/utopic

« back to all changes in this revision

Viewing changes to lib/yuilib/3.9.1/build/anim-node-plugin/anim-node-plugin-debug.js

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2014-05-12 16:10:38 UTC
  • mfrom: (36.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20140512161038-puyqf65k4e0s8ytz
Tags: 2.6.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
2
 
YUI.add('anim-node-plugin', function (Y, NAME) {
3
 
 
4
 
/**
5
 
 *  Binds an Anim instance to a Node instance
6
 
 * @module anim
7
 
 * @class Plugin.NodeFX
8
 
 * @extends Anim
9
 
 * @submodule anim-node-plugin
10
 
 */
11
 
 
12
 
var NodeFX = function(config) {
13
 
    config = (config) ? Y.merge(config) : {};
14
 
    config.node = config.host;
15
 
    NodeFX.superclass.constructor.apply(this, arguments);
16
 
};
17
 
 
18
 
NodeFX.NAME = "nodefx";
19
 
NodeFX.NS = "fx";
20
 
 
21
 
Y.extend(NodeFX, Y.Anim);
22
 
 
23
 
Y.namespace('Plugin');
24
 
Y.Plugin.NodeFX = NodeFX;
25
 
 
26
 
 
27
 
}, '3.9.1', {"requires": ["node-pluginhost", "anim-base"]});