Apps10XHarshal
Results
1
comments of
Apps10XHarshal
``` class SupportGBoard { constructor(quill) { this.quill = quill; quill.on("editor-change", this.handle.bind(this)); } handle(eventName, ...args) { if (eventName === "text-change") { let ops = args[0]["ops"]; let oldSelection = this.quill.getSelection(true); let oldPos...