From 89847f92697880628587741de947f6035d0e3fbb 2013-05-01 12:52:37 From: Jean-Philippe Lang Date: 2013-05-01 12:52:37 Subject: [PATCH] Fixed: Lost text after selection in issue list with IE (#12650). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11750 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/javascripts/context_menu.js b/public/javascripts/context_menu.js index 6c0b364..a3e1545 100644 --- a/public/javascripts/context_menu.js +++ b/public/javascripts/context_menu.js @@ -186,7 +186,7 @@ function contextMenuCheckSelectionBox(tr, checked) { function contextMenuClearDocumentSelection() { // TODO if (document.selection) { - document.selection.clear(); // IE + document.selection.empty(); // IE } else { window.getSelection().removeAllRanges(); }