diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index 8c8a42cc2..63b60ba13 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -106,6 +106,7 @@ var ApplicationController = new(function(){ Common.Analytics.trackEvent('Load', 'Start'); } + embedConfig.docTitle = docConfig.title; if ( !embedConfig.saveUrl && permissions.print === false) $('#idt-copy').hide(); } diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 171bb91f6..937e77b70 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -107,6 +107,7 @@ var ApplicationController = new(function(){ Common.Analytics.trackEvent('Load', 'Start'); } + embedConfig.docTitle = docConfig.title; if (!embedConfig.saveUrl && permissions.print === false) $('#idt-copy').hide(); } diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index b7636460d..a34863d9c 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -105,6 +105,7 @@ var ApplicationController = new(function(){ Common.Analytics.trackEvent('Load', 'Start'); } + embedConfig.docTitle = docConfig.title; if ( !embedConfig.saveUrl && permissions.print === false) $('#idt-copy').hide(); }