~ted/lazr-js/annoying-debug-message

« back to all changes in this revision

Viewing changes to src-js/lazrjs/yui/node/node-event-simulate-debug.js

  • Committer: Launchpad Patch Queue Manager
  • Date: 2010-09-09 14:20:30 UTC
  • mfrom: (182.1.3 yui-3.2)
  • Revision ID: launchpad@pqm.canonical.com-20100909142030-13w6vo0ixfysxc15
[r=beuno] Update lazr-js to yui-3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3
3
Code licensed under the BSD License:
4
4
http://developer.yahoo.com/yui/license.html
5
 
version: 3.1.2
6
 
build: 56
 
5
version: 3.2.0
 
6
build: 2676
7
7
*/
8
8
YUI.add('node-event-simulate', function(Y) {
9
9
 
10
 
/*
11
 
 * Functionality to simulate events.
 
10
/**
 
11
 * Adds functionality to simulate events.
12
12
 * @module node
13
 
 * @for Node
14
13
 * @submodule node-event-simulate
15
14
 */
16
15
 
19
18
     * @param {String} type The type of event to simulate (i.e., "click").
20
19
     * @param {Object} options (Optional) Extra options to copy onto the event object.
21
20
     * @return {void}
 
21
     * @for Node
22
22
     * @method simulate
23
 
     * @static
24
23
     */     
25
24
    Y.Node.prototype.simulate = function(type, options) {
26
25
        Y.Event.simulate(Y.Node.getDOMNode(this), type, options);
28
27
 
29
28
 
30
29
 
31
 
}, '3.1.2' ,{requires:['node-base', 'event-simulate']});
 
30
}, '3.2.0' ,{requires:['node-base', 'event-simulate']});