Lines Matching refs:capture
172 add = function(el, type, fn, capture) {
174 el.addEventListener(type, fn, capture);
179 remove = function(el, type, fn, capture) {
183 el.removeEventListener(type, fn, capture);
343 // then capture the junk between the LAST "&" and the string in 1-4. So
344 // "blah?foo/yui/yui.js" will capture "foo/" and "blah?some/thing.js&3.3.0/build/yui-davglass/yui-davglass.js"
345 // will capture "3.3.0/build/"
351 // ([^&]*) capture the stuff after the last & in \1
1296 // add a window load event at load time so we can capture
15007 _createWrapper: function (el, type, capture, compat, facade) {
15016 if (capture) {
15017 key += 'capture';
15049 cewrapper.capture = capture;
15062 add(el, type, cewrapper.fn, capture);
15078 capture = conf && conf.capture,
15162 cewrapper = Event._createWrapper(el, type, capture, compat, facade);
15518 remove(wrapper.el, wrapper.type, wrapper.fn, wrapper.capture);
15597 * @param {boolen} capture capture or bubble phase
15610 * @param {boolen} capture capture or bubble phase