yaniswang / xhEditor

xhEditor是一个基于jQuery开发的简单迷你并且高效的在线可视化HTML编辑器。
http://xheditor.com/
GNU Lesser General Public License v3.0
244 stars 79 forks source link

jquery 3.5.1 compatibility #43

Open MaheshVelankar opened 3 years ago

MaheshVelankar commented 3 years ago

there are some empty span tags that are coded by the script.... and are wrongly expanded by jquery/browser as per changes in jquery 3.5.1 documentation.

please see in main.js such span tags like

<span ....... />

I suggest, please change all such occurrences with

<span........></span>

HTH Thanks