/yui3/src/yui/js/ |
H A D | yui-later.js | 2 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 42 wrapper = function() { 55 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, when);
|
/yui3/build/yui-later/ |
H A D | yui-later-debug.js | 4 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 44 wrapper = function() { 57 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, when);
|
/yui3/build/event-touch/ |
H A D | event-touch-debug.js | 21 * @param wrapper {Event.Custom} the custom event wrapper for this DOM event 23 Y.DOMEventFacade.prototype._touch = function(e, currentTarget, wrapper) { 44 touchCache[Y.stamp(et)] = this.touches[i] = new Y.DOMEventFacade(et, currentTarget, wrapper); 65 this.targetTouches[i] = etCached || new Y.DOMEventFacade(et, currentTarget, wrapper); 95 this.changedTouches[i] = etCached || new Y.DOMEventFacade(et, currentTarget, wrapper);
|
/yui3/src/async-queue/js/ |
H A D | async-queue.js | 171 * Creates a wrapper function to execute the callback using the aggregated 175 * The wrapper function is decorated with the callback configuration as 180 * @return {Function} a decorated function wrapper to execute the callback 194 wrapper = Y.bind(function () { 195 if (!wrapper._running) { 196 wrapper.iterations--; 198 if (isFunction(wrapper.fn)) { 199 wrapper.fn.apply(wrapper.context || Y, 200 Y.Array(wrapper [all...] |
/yui3/build/async-queue/ |
H A D | async-queue-debug.js | 173 * Creates a wrapper function to execute the callback using the aggregated 177 * The wrapper function is decorated with the callback configuration as 182 * @return {Function} a decorated function wrapper to execute the callback 196 wrapper = Y.bind(function () { 197 if (!wrapper._running) { 198 wrapper.iterations--; 200 if (isFunction(wrapper.fn)) { 201 wrapper.fn.apply(wrapper.context || Y, 202 Y.Array(wrapper [all...] |
/yui3/src/event/js/ |
H A D | event-facade-dom-touch.js | 19 * @param wrapper {Event.Custom} the custom event wrapper for this DOM event 21 Y.DOMEventFacade.prototype._touch = function(e, currentTarget, wrapper) { 42 touchCache[Y.stamp(et)] = this.touches[i] = new Y.DOMEventFacade(et, currentTarget, wrapper); 63 this.targetTouches[i] = etCached || new Y.DOMEventFacade(et, currentTarget, wrapper); 93 this.changedTouches[i] = etCached || new Y.DOMEventFacade(et, currentTarget, wrapper);
|
H A D | event-facade-dom.js | 14 * @param wrapper {Event.Custom} the custom event wrapper for this DOM event 46 * probably the anonymous div wrapper Gecko adds inside text 71 DOMEventFacade = function(ev, currentTarget, wrapper) { 74 this._wrapper = wrapper || EMPTY;
|
H A D | event-dom.js | 55 // subscriber is detached. deleteAndClean overrides the DOM event's wrapper 110 * Custom event wrapper map DOM events. Key is 328 // create CE wrapper 811 * @param wrapper {CustomEvent} Custom event proxy for the DOM 817 _clean: function (wrapper) { 818 var key = wrapper.key, 819 domkey = wrapper.domkey; 821 remove(wrapper.el, wrapper.type, wrapper [all...] |
/yui3/src/loader/scripts/ |
H A D | build_loader_tests.js | 9 var wrapper = fs.readFileSync(__dirname + '/loader_template.js', 'utf8'); variable 73 wrapper = wrapper.replace('!!TESTCASE!!', str); 75 fs.writeFileSync(path.join(__dirname, '../', 'tests/cli') + '/loader.js', wrapper);
|
/yui3/build/resize-base/ |
H A D | resize-base-debug.js | 60 WRAPPER = 'wrapper', 305 * The wrapper element type (default div) could be over-riden passing the 306 * <code>wrapper</code> attribute. 319 * Elements that requires a wrapper by default. Normally are elements 336 * @attribute wrapper 341 wrapper: { 452 * Template used to create the resize wrapper for the handles. 460 * Template used to create the resize wrapper node when needed. 512 * Stores the <a href="Resize.html#config_wrapper">wrapper</a> 660 wrapper [all...] |
/yui3/src/resize/js/ |
H A D | resize-base.js | 58 WRAPPER = 'wrapper', 303 * The wrapper element type (default div) could be over-riden passing the 304 * <code>wrapper</code> attribute. 317 * Elements that requires a wrapper by default. Normally are elements 334 * @attribute wrapper 339 wrapper: { 450 * Template used to create the resize wrapper for the handles. 458 * Template used to create the resize wrapper node when needed. 510 * Stores the <a href="Resize.html#attr_wrapper">wrapper</a> 658 wrapper [all...] |
/yui3/build/event-base/ |
H A D | event-base-debug.js | 66 * @param wrapper {Event.Custom} the custom event wrapper for this DOM event 98 * probably the anonymous div wrapper Gecko adds inside text 123 DOMEventFacade = function(ev, currentTarget, wrapper) { 126 this._wrapper = wrapper || EMPTY; 432 // subscriber is detached. deleteAndClean overrides the DOM event's wrapper 487 * Custom event wrapper map DOM events. Key is 705 // create CE wrapper 1188 * @param wrapper {CustomEvent} Custom event proxy for the DOM 1194 _clean: function (wrapper) { [all...] |
/yui3/build/simpleyui/ |
H A D | simpleyui-debug.js | 537 The build system will produce the `YUI.add` wrapper for you module, along 1753 * deployed as first-class YUI 3 modules. Eventually, the wrapper 1756 * the wrapper modules via this config. 2552 Returns a wrapper for a function which caches the return value of that function, 2554 when the wrapper is called. 2560 passed to the wrapper function, arguments that aren't strings and don't provide 5428 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 5468 wrapper = function() { 5481 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, whe [all...] |
/yui3/src/simpleyui/js/ |
H A D | concat.js | 537 The build system will produce the `YUI.add` wrapper for you module, along 1753 * deployed as first-class YUI 3 modules. Eventually, the wrapper 1756 * the wrapper modules via this config. 2552 Returns a wrapper for a function which caches the return value of that function, 2554 when the wrapper is called. 2560 passed to the wrapper function, arguments that aren't strings and don't provide 5428 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 5468 wrapper = function() { 5481 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, whe [all...] |
/yui3/build/yui-base/ |
H A D | yui-base-debug.js | 537 The build system will produce the `YUI.add` wrapper for you module, along 1753 * deployed as first-class YUI 3 modules. Eventually, the wrapper 1756 * the wrapper modules via this config. 2552 Returns a wrapper for a function which caches the return value of that function, 2554 when the wrapper is called. 2560 passed to the wrapper function, arguments that aren't strings and don't provide 5428 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 5468 wrapper = function() { 5481 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, whe [all...] |
/yui3/build/yui/ |
H A D | yui-debug.js | 537 The build system will produce the `YUI.add` wrapper for you module, along 1753 * deployed as first-class YUI 3 modules. Eventually, the wrapper 1756 * the wrapper modules via this config. 2552 Returns a wrapper for a function which caches the return value of that function, 2554 when the wrapper is called. 2560 passed to the wrapper function, arguments that aren't strings and don't provide 5428 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 5468 wrapper = function() { 5481 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, whe [all...] |
/yui3/build/yui-nodejs/ |
H A D | yui-nodejs-debug.js | 537 The build system will produce the `YUI.add` wrapper for you module, along 1753 * deployed as first-class YUI 3 modules. Eventually, the wrapper 1756 * the wrapper modules via this config. 2552 Returns a wrapper for a function which caches the return value of that function, 2554 when the wrapper is called. 2560 passed to the wrapper function, arguments that aren't strings and don't provide 4444 * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>. 4484 wrapper = function() { 4497 id = (periodic) ? setInterval(wrapper, when) : setTimeout(wrapper, whe [all...] |