index.js 342 B

1234567891011121314151617
  1. // panel/index.js, this filename needs to match the one registered in package.json
  2. Editor.Panel.extend({
  3. // css style for panel
  4. style: ``,
  5. // html template for panel
  6. template: ``,
  7. // element and variable binding
  8. $: {},
  9. // method executed when template and styles are successfully loaded and initialized
  10. ready() {
  11. },
  12. });