42
43
fromChar = String.fromCharCode(charCode);
43
44
// Arrow keys, Pg{Up,Dn}, Home, End won't mutate the content.
44
if ([33, 34, 35, 36, 37, 38, 39, 40].indexOf(keyCode) == -1)
45
if ([33, 34, 35, 36, 37, 38, 39, 40].indexOf(keyCode) == -1 && (charCode!=115 || !evt.ctrlKey))
46
47
for (var handler in this.changehandlers)