diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-05-01 12:52:37 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-05-01 12:52:37 +0000 |
commit | 89847f92697880628587741de947f6035d0e3fbb (patch) | |
tree | 698c2d9be7569952952102962bc079ba653d9156 /public | |
parent | 2ad04658644f004d7ea659039972d99dfce655a4 (diff) | |
download | redmine-89847f92697880628587741de947f6035d0e3fbb.tar.gz redmine-89847f92697880628587741de947f6035d0e3fbb.zip |
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
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/context_menu.js | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } |