Lines Matching refs:event
3 * or synthetic DOM event occurs outside a bound element.
26 * By default, the created synthetic event name will be the name of the event
35 * @module event
36 * @submodule event-outside
49 * Defines a new outside event to correspond with the given DOM event.
51 * By default, the created synthetic event name will be the name of the event
57 * @param {String} event DOM event
58 * @param {String} name (optional) custom outside event name
62 Y.Event.defineOutside = function (event, name) {
63 name = name || (event + 'outside');
68 sub.handle = Y.one('doc').on(event, function(e) {
81 sub.handle = Y.one('doc').delegate(event, function (e) {
100 Y.Array.each(nativeEvents, function (event) {
101 Y.Event.defineOutside(event);