/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/static/javascript/yui/build/anim/anim-node-plugin.js

  • Committer: Matt Nordhoff
  • Date: 2010-02-26 04:37:13 UTC
  • mfrom: (400 trunk)
  • mto: This revision was merged to the branch mainline in revision 401.
  • Revision ID: mnordhoff@mattnordhoff.com-20100226043713-7mw3r6dr9qowutmi
Merge trunk for NEWS

Show diffs side-by-side

added added

removed removed

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