##// END OF EJS Templates
Fixed: Lost text after selection in issue list with IE (#12650)....
Jean-Philippe Lang -
r11520:89847f926978
parent child
Show More
@@ -186,7 +186,7 function contextMenuCheckSelectionBox(tr, checked) {
186 function contextMenuClearDocumentSelection() {
186 function contextMenuClearDocumentSelection() {
187 // TODO
187 // TODO
188 if (document.selection) {
188 if (document.selection) {
189 document.selection.clear(); // IE
189 document.selection.empty(); // IE
190 } else {
190 } else {
191 window.getSelection().removeAllRanges();
191 window.getSelection().removeAllRanges();
192 }
192 }
General Comments 0
You need to be logged in to leave comments. Login now