suneditor 2.43.7 → 2.43.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suneditor",
3
- "version": "2.43.7",
3
+ "version": "2.43.8",
4
4
  "description": "Pure JavaScript based WYSIWYG web editor",
5
5
  "author": "JiHong.Lee",
6
6
  "license": "MIT",
package/src/lib/core.js CHANGED
@@ -5240,7 +5240,7 @@ export default function (context, pluginCallButtons, plugins, lang, options, _re
5240
5240
  } else if (util.isFormatElement(node)) {
5241
5241
  html += '<li>' +(node.innerHTML.trim() || '<br>') + '</li>';
5242
5242
  } else if (util.isRangeFormatElement(node) && !util.isTable(node)) {
5243
- html += event._convertListCell(node);
5243
+ html += this._convertListCell(node);
5244
5244
  } else {
5245
5245
  html += '<li>' + node.outerHTML + '</li>';
5246
5246
  }