Searched defs:on (Results 1 - 8 of 8) sorted by relevance
/yui3/src/event/js/ |
H A D | contextmenu.js | 6 * <li>When the "contextmenu" event is fired via the keyboard, the pageX, pageY, clientX and clientY properties reference the center of the event target. This makes it easy for "contextmenu" event listeners to position an overlay in response to the event by not having to worry about special handling of the x and y coordinates based on the device that fired the event.</li> 7 * <li>For Webkit and Gecko on the Mac it enables the use of the Shift + Control + Option + M keyboard shortcut to fire the "contextmenu" event, which (by default) is only available when VoiceOver (the screen reader on the Mac) is enabled.</li> 8 * <li>For Opera on the Mac it ensures the "contextmenu" event is fired when the user presses Shift + Command + M (Opera's context menu keyboard shortcut).</li> 31 on: function (node, subscription, notifier, filter) { 58 handles.push(node[filter ? "delegate" : "on"]("keydown", function (e) { 69 // Note: The context menu keyboard shortcut for Opera on the Mac is Shift + Cmd (metaKey) + M, 94 // 3) For Opera on the Mac the context menu keyboard shortcut 96 // and Opera on windows, Opera doesn't fire a "contextmenu" event, 176 conf.delegate = conf.on; 29 conf = { method [all...] |
H A D | hover.js | 6 * <pre><code>node.on("hover", overFn, outFn); 8 * Y.on("hover", overFn, outFn, ".targetSelector"); 15 * <pre><code>Y.on("hover", overFn, ".targetSelector", outFn); 35 on: function (node, sub, notifier, filter) { 40 sub._detach = node[(filter) ? "delegate" : "on"]({ 62 conf.delegate = conf.on; 33 }, method
|
H A D | available.js | 18 * @param args* 0..n additional arguments to pass on to the callback function. 24 on: function(type, fn, id, o) { 42 * @param args* 0..n additional arguments to pass on to the callback function. 48 on: function(type, fn, id, o) {
|
H A D | mouseentermouseleave.js | 12 * <pre><code>Y.one('#container').on('mouseover', callback)</code></pre> 46 on: function (node, sub, notifier) { 57 // node.on(this.proxyType, notify, null, notifier); 44 }, method
|
H A D | mousewheel.js | 38 on: function() {
|
H A D | outside.js | 67 on: function (node, sub, notifier) { 68 sub.handle = Y.one('doc').on(event, function(e) {
|
/yui3/src/node/js/ |
H A D | node-load.js | 52 on: {
|
/yui3/src/event-custom/js/ |
H A D | event-target.js | 55 * Y.on('detachcategory| menu:click', fn) 130 * This is the equivalent to <code>on</code> except the 141 var handle = this.on.apply(this, arguments); 173 * Takes the type parameter passed to 'on' and parses out the 213 * @method on 221 on: function(type, fn, context) { 265 ret.push(this.on.apply(this, args)); 282 return Y.on.apply(Y, args); 313 handle = adapt.on.apply(Y, args); 338 * @deprecated use on [all...] |
Completed in 29 milliseconds