Lines Matching refs:e

289     select: function (value, strategy, e) {  argument
291 this.adapter.select(value, strategy, e);
398 $(document).on('click', function (e) { argument
399 var id = e.originalEvent && e.originalEvent.keepTextCompleteDropdown;
568 isUp: function (e) { argument
569 return e.keyCode === 38 || (e.ctrlKey && e.keyCode === 80); // UP, Ctrl-P
572 isDown: function (e) { argument
573 return e.keyCode === 40 || (e.ctrlKey && e.keyCode === 78); // DOWN, Ctrl-N
576 isEnter: function (e) { argument
577 var modifiers = e.ctrlKey || e.altKey || e.metaKey || e.shiftKey;
578 …return !modifiers && (e.keyCode === 13 || e.keyCode === 9 || (this.option.completeOnSpace === true…
581 isPageup: function (e) { argument
582 return e.keyCode === 33; // PAGEUP
585 isPagedown: function (e) { argument
586 return e.keyCode === 34; // PAGEDOWN
589 isEscape: function (e) { argument
590 return e.keyCode === 27; // ESCAPE
612 _onClick: function (e) { argument
613 var $el = $(e.target);
614 e.preventDefault();
615 e.originalEvent.keepTextCompleteDropdown = this.id;
620 this.completer.select(datum.value, datum.strategy, e);
626 if (e.type === 'touchstart') {
633 _onMouseover: function (e) { argument
634 var $el = $(e.target);
635 e.preventDefault();
643 _onKeydown: function (e) { argument
649 command = this.option.onKeydown(e, commands);
653 command = this._defaultKeydown(e);
664 this._enter(e);
678 e.preventDefault();
679 e.stopImmediatePropagation();
682 _defaultKeydown: function (e) { argument
683 if (this.isUp(e)) {
685 } else if (this.isDown(e)) {
687 } else if (this.isEnter(e)) {
689 } else if (this.isPageup(e)) {
691 } else if (this.isPagedown(e)) {
693 } else if (this.isEscape(e)) {
718 _enter: function (e) { argument
720 this.completer.select(datum.value, datum.strategy, e);
1045 _onKeyup: function (e) { argument
1046 if (this._skipSearch(e)) { return; }
1092 select: function (value, strategy, e) { argument
1095 var newSubstr = strategy.replace(value, e);
1166 select: function (value, strategy, e) { argument
1169 var newSubstr = strategy.replace(value, e);
1221 select: function (value, strategy, e) { argument
1231 var newSubstr = strategy.replace(value, e);