Home
last modified time | relevance | path

Searched refs:keyCode (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/lutok/api-docs/html/search/
H A Dsearch.js173 if (e.keyCode==40 || e.keyCode==13)
196 else if (e.keyCode==27) // Escape out of the search field
280 if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down
285 else if (e.keyCode==38 && this.searchIndex>0) // Up
290 else if (e.keyCode==13 || e.keyCode==27)
583 this.lastKey = e.keyCode;
604 if (e.keyCode==13) return true;
682 if (e.keyCode==13) return true;
/freebsd/contrib/lutok/api-docs/html/
H A Djquery.js2 …geX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,butt… property
8 …)},odd:function(){return this.filter(function(t){return t%2==1})}});y.ui.keyCode={BACKSPACE:8,COMM…
22 …nts.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.…
34 …),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=th…
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.js3347 event.which = original.charCode != null ? original.charCode : original.keyCode;