We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kissy5 editor 不能粘贴excel表格 ,有办法解决吗
看了一下源码, if (/(class="?Mso|style="[^"]*\bmso-|w:WordDocument)/.test(html)) { require('editor/plugin/word-filter', function (wordFilter) { editor.insertHtml(wordFilter.toDataFormat(html, editor)); }); } else { editor.insertHtml(html); }
是 require('editor/plugin/word-filter' 这个模块没找到,导致editor.insertHtml(wordFilter.toDataFormat(html, editor));没有执行,有什么好办法解决么?copy源码的话,是不是要把所有plugin 代码copy过去才可以呀?如果只copy editor.js 会导致所有工具条都出不来……
The text was updated successfully, but these errors were encountered:
kissy已不再维护...呵呵
Sorry, something went wrong.
No branches or pull requests
kissy5 editor 不能粘贴excel表格 ,有办法解决吗
看了一下源码,
if (/(class="?Mso|style="[^"]*\bmso-|w:WordDocument)/.test(html)) {
require('editor/plugin/word-filter', function (wordFilter) {
editor.insertHtml(wordFilter.toDataFormat(html, editor));
});
} else {
editor.insertHtml(html);
}
是 require('editor/plugin/word-filter' 这个模块没找到,导致editor.insertHtml(wordFilter.toDataFormat(html, editor));没有执行,有什么好办法解决么?copy源码的话,是不是要把所有plugin 代码copy过去才可以呀?如果只copy editor.js 会导致所有工具条都出不来……
The text was updated successfully, but these errors were encountered: