Lines Matching refs:on
16 * distributed under the License is distributed on an 'AS IS' BASIS,
157 // We cannot rely on the element position, need to position relative to the window
428 .on('focus.bootstrap3Typeahead', jQuery.proxy(this.focus, this))
429 .on('blur.bootstrap3Typeahead', jQuery.proxy(this.blur, this))
430 .on('keypress.bootstrap3Typeahead', jQuery.proxy(this.keypress, this))
431 .on('propertychange.bootstrap3Typeahead input.bootstrap3Typeahead', jQuery.proxy(this.input, this))
432 .on('keyup.bootstrap3Typeahead', jQuery.proxy(this.keyup, this));
435 this.$element.on('keydown.bootstrap3Typeahead', jQuery.proxy(this.keydown, this));
441 .on('touchstart', itemTagName, jQuery.proxy(this.touchstart, this))
442 .on('touchend', itemTagName, jQuery.proxy(this.click, this))
443 .on('click', jQuery.proxy(this.click, this))
444 .on('mouseenter', itemTagName, jQuery.proxy(this.mouseenter, this))
445 .on('mouseleave', itemTagName, jQuery.proxy(this.mouseleave, this))
446 .on('mousedown', jQuery.proxy(this.mousedown, this));
449 .on('touchstart', itemTagName, jQuery.proxy(this.touchstart, this))
450 .on('touchend', itemTagName, jQuery.proxy(this.click, this));
453 .on('click', jQuery.proxy(this.click, this))
454 .on('mouseenter', itemTagName, jQuery.proxy(this.mouseenter, this))
455 .on('mouseleave', itemTagName, jQuery.proxy(this.mouseleave, this))
456 .on('mousedown', jQuery.proxy(this.mousedown, this));
547 // (https://connect.microsoft.com/IE/feedback/details/810538/ie-11-fires-input-event-on-focus)
616 // This is for IE that blurs the input when user clicks on scroll.
617 // We set the focus back on the input and prevent the lookup to occur again
646 * We track the mousedown for IE. When clicking on the menu scrollbar, IE makes the input blur thus hiding the menu.
748 jQuery(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {