diff options
author | Tom Adams <tom@holizz.com> | 2009-08-04 16:15:36 +0100 |
---|---|---|
committer | Tom Adams <tom@holizz.com> | 2009-08-04 16:15:36 +0100 |
commit | ffa1d662a759a729151f2444bdf759749d59045e (patch) | |
tree | 3427013aae2a6aea6ce17328688bee4a684c7a0b /js | |
parent | 8e59ee61f71c54dc187dc6542e7c92a11126be47 (diff) |
Didn't test that JS in IE. Revert a little.
Diffstat (limited to 'js')
-rw-r--r-- | js/util.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/js/util.js b/js/util.js index 0409dc601..9d6e52b2d 100644 --- a/js/util.js +++ b/js/util.js @@ -264,10 +264,6 @@ function NoticeReplySet(nick,id) { var len = text.val().length; text.get(0).setSelectionRange(len,len); text.get(0).focus(); - } else if (text.get(0).createTextRange) { - var range = text.createTextRange(); - range.collapse(false); - range.select(); } return false; } |