From 606762dcadbc8836b7ff7648f2d35938c97b5198 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 1 May 2013 12:53:10 +0000 Subject: [PATCH] Merged r11750 from trunk (#12650). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.3-stable@11751 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/javascripts/context_menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/context_menu.js b/public/javascripts/context_menu.js index 6c0b36414..a3e1545b2 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(); }