Lines Matching refs:id

33   var id = 1;
43 option._oid = id++; // unique object id
144 this.id = 'textcomplete' + uniqueId++;
160 this.$el.one('focus.' + this.id, function () { self.initialize(); });
166 …if($.inArray(event.editor.id, initializedEditors) == -1) { //For multiple ckeditors on one page: f…
167 initializedEditors.push(event.editor.id);
197 id: null,
240 this.$el.off('.' + this.id);
399 var id = e.originalEvent && e.originalEvent.keepTextCompleteDropdown;
401 if (key !== id) { view.deactivate(); }
424 this.id = completer.id + 'dropdown';
437 dropdownViews[this.id] = this;
470 id: null,
484 this.$el.off('.' + this.id);
485 this.$inputEl.off('.' + this.id);
489 delete dropdownViews[this.id]
497 if (strategy.id) {
498 this.$el.attr('data-strategy', strategy.id);
606 this.$el.on('mousedown.' + this.id, '.textcomplete-item', $.proxy(this._onClick, this));
607 this.$el.on('touchstart.' + this.id, '.textcomplete-item', $.proxy(this._onClick, this));
608 this.$el.on('mouseover.' + this.id, '.textcomplete-item', $.proxy(this._onMouseover, this));
609 bindFirst(this.$inputEl, 'keydown.' + this.id, $.proxy(this._onKeydown, this));
615 e.originalEvent.keepTextCompleteDropdown = this.id;
925 id: null,
977 id: null, // Identity.
989 this.id = completer.id + this.constructor.name;
1001 this.$el.off('.' + this.id); // Remove all event handlers.
1042 this.$el.on('keyup.' + this.id, $.proxy(this._onKeyup, this));
1357 this.$el.on('keyup.' + this.id, $.proxy(this._onKeyup, this));
1449 div.id = 'input-textarea-caret-position-mirror-div';