event-focus-debug.js revision 680f13616a493c7bf3a794982e07d10abd9763b3
/**
* Adds bubbling and delegation support to DOM events focus and blur.
*
* @module event
* @submodule event-focus
*/
{ capture: true });
},
// Maintain a list to handle subscriptions from nested containers
// div#a>div#b>input #a.on(focus..) #b.on(focus..), use one focus
// or blur subscription that fires notifiers from #b then #a to
// emulate bubble sequence.
if (!notifiers) {
notifiers = {};
// remove element level subscription after execution
}
}
},
_notify: function (e) {
var node = e.currentTarget,
// document.get('ownerDocument') returns null
nots = [],
i, len;
// Walk up the parent axis until the origin node,
}
}
// leaving the element pristine, as if nothing ever happened...
},
},
},
}
},
}
}, true);
}