diff --git a/apps/common/main/lib/view/About.js b/apps/common/main/lib/view/About.js index 32385370a6..8e4e59259c 100644 --- a/apps/common/main/lib/view/About.js +++ b/apps/common/main/lib/view/About.js @@ -67,7 +67,7 @@ define([ '
| ', '', ' | |
| ', + ' | ', ' |
| ', @@ -235,6 +235,13 @@ define([ this.fireEvent('hide', this ); }, + setMode: function(mode){ + if (mode.isLightVersion) { + $('#id-about-licensor-version-name').text(this.txtEdition + this.txtVersion + this.txtVersionNum); + $('#id-about-licensee-version-name').text(this.txtEdition + this.txtVersion + this.txtVersionNum); + } + }, + txtPoweredBy: 'Powered by', txtVersion: 'Version ', txtLicensor: 'LICENSOR', @@ -242,7 +249,8 @@ define([ txtAddress: 'address: ', txtAscAddress: 'Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021', txtMail: 'email: ', - txtTel: 'tel.: ' + txtTel: 'tel.: ', + txtEdition: 'Integration Edition ' }, Common.Views.About || {})); }); diff --git a/apps/documenteditor/main/app/view/LeftMenu.js b/apps/documenteditor/main/app/view/LeftMenu.js index 440f16216b..c658b08e0c 100644 --- a/apps/documenteditor/main/app/view/LeftMenu.js +++ b/apps/documenteditor/main/app/view/LeftMenu.js @@ -348,6 +348,7 @@ define([ setMode: function(mode) { this.mode = mode; + this.btnAbout.panel.setMode(mode); return this; }, diff --git a/apps/presentationeditor/main/app/view/LeftMenu.js b/apps/presentationeditor/main/app/view/LeftMenu.js index 568d554f1e..56e5fb2e35 100644 --- a/apps/presentationeditor/main/app/view/LeftMenu.js +++ b/apps/presentationeditor/main/app/view/LeftMenu.js @@ -340,6 +340,7 @@ define([ setMode: function(mode) { this.mode = mode; + this.btnAbout.panel.setMode(mode); return this; }, diff --git a/apps/spreadsheeteditor/main/app/view/LeftMenu.js b/apps/spreadsheeteditor/main/app/view/LeftMenu.js index 75baf1ec90..137c45737d 100644 --- a/apps/spreadsheeteditor/main/app/view/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/view/LeftMenu.js @@ -335,6 +335,7 @@ define([ setMode: function(mode) { this.mode = mode; + this.btnAbout.panel.setMode(mode); return this; }, |