vitch/jScrollPane

Jquery 3.5.0 Security Fix Closing HTML Tags

melloware opened this issue · 4 comments

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>')

I fix this as this appears to be in many places

This should be fixed in master now

Nice work! Looks good to me.

This can be closed then?