diff options
author | Cesar G <prototech91@gmail.com> | 2014-01-25 15:37:33 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-01-25 15:37:33 -0800 |
commit | 43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165 (patch) | |
tree | c9c45ae348fa0d73e61677532a2ab8c4a9cb27cf /phpBB/styles/subsilver2/template | |
parent | ed409d3d5b89b3a2cad04a366a09f42280735799 (diff) | |
download | forums-43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165.tar forums-43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165.tar.gz forums-43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165.tar.bz2 forums-43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165.tar.xz forums-43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165.zip |
[ticket/12093] Check that document.selection is supported.
PHPBB3-12093
Diffstat (limited to 'phpBB/styles/subsilver2/template')
-rw-r--r-- | phpBB/styles/subsilver2/template/editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/editor.js b/phpBB/styles/subsilver2/template/editor.js index 151cf53ff1..103a271a71 100644 --- a/phpBB/styles/subsilver2/template/editor.js +++ b/phpBB/styles/subsilver2/template/editor.js @@ -351,7 +351,7 @@ function mozWrap(txtarea, open, close) */ function storeCaret(textEl) { - if (textEl.createTextRange) + if (textEl.createTextRange && document.selection) { textEl.caretPos = document.selection.createRange().duplicate(); } |