Removed alert()

SVN revision: 1820
This commit is contained in:
Stefan Ritt 2007-04-03 11:16:49 +00:00
parent cdd3140fa4
commit 442009ba32

View File

@ -118,7 +118,6 @@ function elKeyPress(evt)
evt = (evt) ? evt : window.event; evt = (evt) ? evt : window.event;
var unicode = evt.charCode ? evt.charCode : evt.keyCode; var unicode = evt.charCode ? evt.charCode : evt.keyCode;
var actualkey = String.fromCharCode(unicode); var actualkey = String.fromCharCode(unicode);
alert('unicode: '+ unicode);
if (evt.ctrlKey && !evt.shiftKey && !evt.altKey) { if (evt.ctrlKey && !evt.shiftKey && !evt.altKey) {