mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(core): 公共点击事件在非浏览器环境不执行
This commit is contained in:
parent
46a26af5d6
commit
ec94eed787
@ -76,14 +76,18 @@ export default class EventHelper extends EventEmitter {
|
||||
|
||||
this.app = app;
|
||||
|
||||
globalThis.document.body.addEventListener('click', this.commonClickEventHandler);
|
||||
if (app.jsEngine === 'browser') {
|
||||
globalThis.document.body.addEventListener('click', this.commonClickEventHandler);
|
||||
}
|
||||
}
|
||||
|
||||
public destroy() {
|
||||
this.removeNodeEvents();
|
||||
this.removeAllListeners();
|
||||
|
||||
globalThis.document.body.removeEventListener('click', this.commonClickEventHandler);
|
||||
if (this.app.jsEngine === 'browser') {
|
||||
globalThis.document.body.removeEventListener('click', this.commonClickEventHandler);
|
||||
}
|
||||
}
|
||||
|
||||
public bindNodeEvents(node: TMagicNode) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user