diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 43e510ce1..02be64126 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -503,7 +503,7 @@ define([ return undefined; }, - helpAvailable: function () { + isHelpAvailable: function () { return !!helpUrl; }, getDefaultPrinterName: function () { diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 617c49802..891692b21 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -461,7 +461,7 @@ define([ url = 'resources/help/' + lang + name; if ( Common.Controllers.Desktop.isActive() ) { - if ( Common.Controllers.Desktop.helpAvailable() ) + if ( Common.Controllers.Desktop.isHelpAvailable() ) url = Common.Controllers.Desktop.helpUrl() + name; else { const helpCenter = Common.Utils.InternalSettings.get('url-help-center');