Issue #2106 - Follow-up: Un-prefix DOM Attribute MozUserSelect

This commit is contained in:
Andy 2025-07-07 10:45:22 -07:00 committed by roytam1
commit abb891ff26
7 changed files with 8 additions and 8 deletions

View file

@ -40,7 +40,7 @@ var sel = window.getSelection();
function enableSelection(id) {
var span = document.getElementById(id);
span.style.MozUserSelect = 'text';
span.style.UserSelect = 'text';
}
function setupPrevSelection() {