[desktop] changed "close" event

This commit is contained in:
Maxim Kadushkin 2021-12-06 14:06:16 +03:00
parent c9c85e324d
commit aac7806d0a

View file

@ -265,7 +265,7 @@ define([
'FileMenu': { 'FileMenu': {
'item:click': function (menu, action, isopts) { 'item:click': function (menu, action, isopts) {
if ( action == 'file:exit' ) { if ( action == 'file:exit' ) {
native.execCommand('editor:event', JSON.stringify({action: 'file:exit'})); native.execCommand('editor:event', JSON.stringify({action: 'file:close'}));
menu.hide(); menu.hide();
} else } else
if ( action == 'file:open' ) { if ( action == 'file:open' ) {
@ -300,7 +300,7 @@ define([
}, },
requestClose: function () { requestClose: function () {
if ( config.isDesktopApp && !!native ) { if ( config.isDesktopApp && !!native ) {
native.execCommand('editor:event', JSON.stringify({action:'close', url: config.customization.goback.url})); native.execCommand('editor:event', JSON.stringify({action:'file:close', url: config.customization.goback.url}));
} }
}, },
isActive: function () { isActive: function () {