12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- SC.loadPackage({ 'MenuItemSaveAs': {
- comment: 'I am the MenuItem for saving the page under a different filename or even to a different domain.',
- traits: ['MenuItem'],
- sharedProperties: {
- menuContainer: { initValue: '<div class="sg-editing-menu-container"><button id="sg-editing-menu-saveAs" class="sg-editing-menu-button"></button></div>' }
- },
- methods: {
- init: {
- comment: 'I init the MenuItem.',
- code: function(theDocumentMenu){
- this.delegate('MenuItem', 'init', theDocumentMenu);
- this.get('menuContainer').firstChild.addEventListener('mouseup', function(evt){
- theDocumentMenu.do('close');
-
- SuperGlue.get('fileManager').do('saveAs', function(filePath){
- SuperGlue.do('savePage', {
- path: filePath
- })
- });
-
- }, false);
- }
- }
- }
- }});
|