Searched defs:Node (Results 1 - 13 of 13) sorted by relevance
/yui3/src/node/js/ |
H A D | node-event-delegate.js | 8 * <p>Sets up a delegation listener for an event occurring inside the Node. 15 * Function filters are called for each Node up the parent axis to the 16 * subscribing container node, and receive at each level the Node and the event 17 * object. The function should return true (or a truthy value) if that Node 20 * callback will be executed for each matching Node.</p> 22 * <p>For each matching Node, the callback will be executed with its 'this' 23 * object set to the Node matched by the filter (unless a specific context was 25 * <code>currentTarget</code> will also be set to the matching Node. The 26 * containing Node from which the subscription was originally made can be 39 * @for Node [all...] |
H A D | node-event-simulate.js | 12 * @for Node 15 Y.Node.prototype.simulate = function(type, options) { 16 Y.Event.simulate(Y.Node.getDOMNode(this), type, options);
|
H A D | node-imports.js | 9 * @for Node 11 * @param {HTMLElement | Node} node Node to be removed 12 * @return {Node} The removed node 28 * @return {Node} The clone 102 Y.Node.prototype[method] = function(arg1, arg2, arg3) { 115 Y.Node.prototype.removeAttribute = function(attr) { 124 Y.Node.importMethod(Y.DOM, [ 128 * @param {Node | HTMLElement} needle The possible node or descendent 136 * @for Node [all...] |
H A D | node-ie.js | 3 Y.Node.prototype.hasAttribute = function(attr) { 16 Y.Node.prototype.focus = function () { 28 Y.Node.ATTRS.type = { 56 Y.Node.ATTRS.elements = {
|
H A D | node-region.js | 9 * @for Node 10 * @type Node 12 Y.Node.ATTRS.region = { 34 * @type Node 36 Y.Node.ATTRS.viewportRegion = { 38 return Y.DOM.viewportRegion(Y.Node.getDOMNode(this)); 42 Y.Node.importMethod(Y.DOM, 'inViewportRegion'); 48 * @for Node 49 * @param {Node|Object} node2 The node or region to compare with. 53 Y.Node [all...] |
H A D | node-screen.js | 2 * Extended Node interface for managing regions and screen positioning. 13 * @for Node 54 Y.Node.ATTRS[name] = { 57 args.unshift(Y.Node.getDOMNode(this)); 65 Y.Node.ATTRS.scrollLeft = { 67 var node = Y.Node.getDOMNode(this); 72 var node = Y.Node.getDOMNode(this); 80 Y.log('unable to set scrollLeft for ' + node, 'error', 'Node'); 85 Y.Node.ATTRS.scrollTop = { 87 var node = Y.Node [all...] |
H A D | node-create.js | 6 var Y_Node = Y.Node, 15 * @return {Node} A Node instance bound to a DOM node or fragment 16 * @for Node 27 * Creates a new Node using the provided markup string. 31 * @return {Node} A Node instance bound to a DOM node or fragment 38 * @param {String | Node | HTMLElement | NodeList | HTMLCollection} content The content to insert 39 * @param {Int | Node | HTMLElement | String} where The position to insert at. 42 * <dt>Y.Node</d [all...] |
H A D | node-load.js | 2 * Extended Node interface with a basic IO API. 11 * @for Node 17 Y.Node.prototype._ioComplete = function(code, response, args) { 37 * Loads content from the given url and replaces the Node's 45 Y.Node.prototype.load = function(url, selector, callback) {
|
H A D | node-pluginhost.js | 8 * which should be plugged into every instance of Node by default). 12 * @for Node 16 Y.Node.plug = function() { 18 args.unshift(Y.Node); 20 return Y.Node; 24 * Unregisters any class level plugins which have been registered by the Node 31 Y.Node.unplug = function() { 33 args.unshift(Y.Node); 35 return Y.Node; 38 Y.mix(Y.Node, [all...] |
/yui3/src/slider/tests/src/ |
H A D | slider.js | 2 Y.Node.prototype.key = function (keyCode, charCode, mods, type) { 171 var container = Y.Node.create("<div></div>"); 187 var container = Y.Node.create("<div></div>"), 252 var container = Y.Node.create('<div></div>'),
|
/yui3/src/event/tests/src/ |
H A D | event-key.js | 1 Y.Node.prototype.key = function (keyCode, charCode, mods, type) {
|
H A D | event-synthetic.js | 1 Y.Node.prototype.click = function (options) { 4 Y.NodeList.importMethod(Y.Node.prototype, 'click'); 77 delete Y.Node.DOM_EVENTS.synth; 94 delete Y.Node.DOM_EVENTS.mouseover; 96 Y.Assert.isUndefined(Y.Node.DOM_EVENTS.mouseover); 100 Y.Assert.isNotUndefined(Y.Node.DOM_EVENTS.mouseover); 104 delete Y.Node.DOM_EVENTS.mouseover; 105 delete Y.Node.DOM_EVENTS.mouseout; 107 Y.Assert.isUndefined(Y.Node.DOM_EVENTS.mouseover); 108 Y.Assert.isUndefined(Y.Node [all...] |
/yui3/src/transition/js/ |
H A D | transition-native.js | 2 * Provides the transition method for Node. 3 * Transition has no API of its own, but adds the transition method to Node. 37 * Adds the "transition" method to Node. 105 Y.Node.DOM_EVENTS[TRANSITION_END] = 1; 463 * @for Node 469 Y.Node.prototype.transition = function(name, config, callback) { 513 Y.Node.prototype.show = function(name, config, callback) { 540 Y.Node.prototype.hide = function(name, config, callback) { 601 Y.Node.prototype.toggleView = function(name, on, callback) {
|
Completed in 92 milliseconds