()
| 7442 | html = $txt.html(); |
| 7443 | // 监控内容变化 |
| 7444 | var cb = function () { |
| 7445 | if (callback) { |
| 7446 | callback(); |
| 7447 | } |
| 7448 | if (html !== $txt.html()) { |
| 7449 | $txt.change(); |
| 7450 | } |
| 7451 | }; |
| 7452 | // 执行命令 |
| 7453 | if (commandFn) { |
| 7454 | editor.customCommand(e, commandFn, cb); |
nothing calls this directly
no test coverage detected