mirror of https://github.com/status-im/codimd.git
Fix listener “this” context
This commit is contained in:
parent
46ed658d8b
commit
df743ab902
|
@ -127,7 +127,7 @@ export default class Editor {
|
|||
}
|
||||
|
||||
this.editor.on(event, (...args) => {
|
||||
this.eventListeners[event].forEach(cb => cb(...args))
|
||||
this.eventListeners[event].forEach(cb => cb.bind(this)(...args))
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue