Changeset 2760 for package_branches/invirt-web/ajaxterm-rebased/code/static
- Timestamp:
- Dec 21, 2009, 1:12:01 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
package_branches/invirt-web/ajaxterm-rebased/code/static/ajaxterm/ajaxterm.js
r2759 r2760 254 254 opt_paste.attachEvent("onclick", do_paste); 255 255 } 256 $('term').onkeypress=keypress; 257 $('term').onkeydown=keydown; 256 // If tabIndex works, only grab keyboard events when terminal is focused 257 // Otherwise, grab from whole document (e.g. in Safari). 258 var focus_element = document; 259 if(typeof $('term').tabIndex != "undefined") { 260 focus_element = $('term'); 261 focus_element.focus(); 262 } 263 focus_element.onkeypress=keypress; 264 focus_element.onkeydown=keydown; 258 265 force=true; 259 266 timeout=window.setTimeout(update,100);
Note: See TracChangeset
for help on using the changeset viewer.