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: '
' } }, 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); } } } }});