Jquery 3.5.0 Security Fix Closing HTML Tags
melloware opened this issue · 4 comments
melloware commented
See: https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/
You can't do this anymore...
$('<div class="jspVerticalBar" />')
You have to add the closing tags yourself like
$('<div class="jspVerticalBar"></div>')
illuusio commented
I fix this as this appears to be in many places
illuusio commented
This should be fixed in master now
melloware commented
Nice work! Looks good to me.
illuusio commented
This can be closed then?