()
| 313 | }, |
| 314 | |
| 315 | refreshEditors() { |
| 316 | if (cmCode) cmCode.setValue(this.editCM.mScript || ''); |
| 317 | if (cmStyle) cmStyle.setValue(this.editCM.mStyle || ''); |
| 318 | if (cmFull) cmFull.setValue(window.TampermonkeyParser.stringify(this.editCM)); |
| 319 | setTimeout(() => { |
| 320 | cmCode && cmCode.refresh(); |
| 321 | cmStyle && cmStyle.refresh(); |
| 322 | cmFull && cmFull.refresh(); |
| 323 | }, 50); |
| 324 | }, |
| 325 | |
| 326 | createMonkey() { |
| 327 | this.editing = true; |
nothing calls this directly
no test coverage detected