main.js 478 B

1234567891011121314
  1. module.exports = {
  2. load() {Editor.log("encrypt-tool load");},
  3. unload() {Editor.log("encrypt-tool unload");},
  4. messages: {
  5. showPanel() {
  6. Editor.Panel.open('encrypt-tool');
  7. },
  8. "editor:build-finished": function(t, e) {
  9. Editor.log("encrypt-tool build-finished");
  10. let i = (new Date).getTime();
  11. // Editor.Ipc.sendToPanel("encrypt-tool", "encrypt-tool:onBuildFinished");
  12. }
  13. }
  14. };