From 43ccfbc6f46ce8926bd37eeddc7bd33b7e93c165 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Sat, 25 Jan 2014 15:37:33 -0800 Subject: [ticket/12093] Check that document.selection is supported. PHPBB3-12093 --- phpBB/styles/subsilver2/template/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/styles/subsilver2/template/editor.js') 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(); } -- cgit v1.2.1