123456789101112131415161718192021222324252627282930313233 |
- /*
- *主线程扩展
- */
- 'use strict';
- module.exports = {
- // 初始化
- onLoad(parent) {
- // 主线程对象: main.js
- this.parent = parent;
- },
- // 窗口销毁
- onDestroy() {
- },
- /************* 事件 *************/
- messages:
- {
- 'newFile'() {
- Editor.Ipc.sendToPanel('simple-code','new-js-file');
- },
- 'newFileDir'(){
- // 打开目录
- Editor.Ipc.sendToPanel('simple-code','custom-template');
- },
-
- }
- };
|