EmbedElement.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. SC.loadPackage({ 'EmbedElement': {
  2. comment: 'I define an embed element, for including foreign resources with so-called "embed codes".',
  3. traits: [ 'Element' ],
  4. sharedProperties: {
  5. protoHTML: { initValue: '<div class="sg-element" data-superglue-type="EmbedElement" style="left: 0px; top: 0px; width: 0px; height: 0px;">'
  6. +'\t<pre><h1>&lt;/&gt;</h1>Replace this with embedded code.</pre>'
  7. +'</div>' },
  8. applicableWidgets: { initValue: [ 'WidgetBackgroundColor', 'WidgetBorderColor', 'WidgetBorder', 'WidgetBorderRadius', 'WidgetPadding', 'WidgetOpacity' ] },
  9. creationMenuItem: { initValue: '<div class="sg-editing-creation-menu-container"><button id="sg-editing-creation-menu-embedElement" class="sg-editing-creation-menu-button" data-tooltip="Embed HTML Code"></button></div>' }
  10. },
  11. properties: {
  12. },
  13. methods: {
  14. init: {
  15. comment: 'I initalize a new EmbedElement for the DOM node given to me as argument.',
  16. code: function(aNode){
  17. this.delegate('Element', 'init', aNode);
  18. // Custom initialisation here
  19. }
  20. }
  21. }
  22. }});