MenuItemSaveAs.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. SC.loadPackage({ 'MenuItemSaveAs': {
  2. comment: 'I am the MenuItem for saving the page under a different filename or even to a different domain.',
  3. traits: ['MenuItem'],
  4. sharedProperties: {
  5. menuContainer: { initValue: '<div class="sg-editing-menu-container"><button id="sg-editing-menu-saveAs" class="sg-editing-menu-button"></button></div>' }
  6. },
  7. methods: {
  8. init: {
  9. comment: 'I init the MenuItem.',
  10. code: function(theDocumentMenu){
  11. this.delegate('MenuItem', 'init', theDocumentMenu);
  12. this.get('menuContainer').firstChild.addEventListener('mouseup', function(evt){
  13. theDocumentMenu.do('close');
  14. SuperGlue.get('fileManager').do('saveAs', function(filePath){
  15. SuperGlue.do('savePage', {
  16. path: filePath
  17. })
  18. });
  19. }, false);
  20. }
  21. }
  22. }
  23. }});