diff --git a/apps/documenteditor/mobile/app/controller/Settings.js b/apps/documenteditor/mobile/app/controller/Settings.js index c9dce5c1d..bf6192291 100644 --- a/apps/documenteditor/mobile/app/controller/Settings.js +++ b/apps/documenteditor/mobile/app/controller/Settings.js @@ -253,9 +253,6 @@ define([ if(_stateDisplayMode == "Final" || _stateDisplayMode == "Original") { $('#settings-document').addClass('disabled'); } - if(!_canReview) { - $('#settings-collaboration').hide(); - } } }, diff --git a/apps/documenteditor/mobile/app/template/Toolbar.template b/apps/documenteditor/mobile/app/template/Toolbar.template index 6fd09866a..7cfc811a6 100644 --- a/apps/documenteditor/mobile/app/template/Toolbar.template +++ b/apps/documenteditor/mobile/app/template/Toolbar.template @@ -43,7 +43,7 @@ <% } %> <% if (!phone) { %> - <% } %> diff --git a/apps/documenteditor/mobile/app/view/Toolbar.js b/apps/documenteditor/mobile/app/view/Toolbar.js index 02772ee30..4738c92c5 100644 --- a/apps/documenteditor/mobile/app/view/Toolbar.js +++ b/apps/documenteditor/mobile/app/view/Toolbar.js @@ -101,7 +101,7 @@ define([ setMode: function (mode) { if (mode.isEdit) { - $('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo, #toolbar-collaboration').show(); + $('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show(); } else if (mode.canEdit && mode.canRequestEditRights){ $('#toolbar-edit-document').show(); } diff --git a/apps/presentationeditor/mobile/app/template/Toolbar.template b/apps/presentationeditor/mobile/app/template/Toolbar.template index 36129bd90..142073fe2 100644 --- a/apps/presentationeditor/mobile/app/template/Toolbar.template +++ b/apps/presentationeditor/mobile/app/template/Toolbar.template @@ -46,7 +46,7 @@ <% } %> <% if (!phone) { %> - <% } %> diff --git a/apps/presentationeditor/mobile/app/view/Toolbar.js b/apps/presentationeditor/mobile/app/view/Toolbar.js index 690eb4b94..e71a47607 100644 --- a/apps/presentationeditor/mobile/app/view/Toolbar.js +++ b/apps/presentationeditor/mobile/app/view/Toolbar.js @@ -102,7 +102,7 @@ define([ setMode: function (mode) { if (mode.isEdit) { - $('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo, #toolbar-collaboration').show(); + $('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show(); } else if (mode.canEdit && mode.canRequestEditRights){ $('#toolbar-edit-document').show(); } diff --git a/apps/spreadsheeteditor/mobile/app/template/Toolbar.template b/apps/spreadsheeteditor/mobile/app/template/Toolbar.template index 6fd09866a..7cfc811a6 100644 --- a/apps/spreadsheeteditor/mobile/app/template/Toolbar.template +++ b/apps/spreadsheeteditor/mobile/app/template/Toolbar.template @@ -43,7 +43,7 @@ <% } %> <% if (!phone) { %> - <% } %> diff --git a/apps/spreadsheeteditor/mobile/app/view/Toolbar.js b/apps/spreadsheeteditor/mobile/app/view/Toolbar.js index ed8db311b..d5bc17b8e 100644 --- a/apps/spreadsheeteditor/mobile/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/mobile/app/view/Toolbar.js @@ -94,7 +94,7 @@ define([ setMode: function (mode) { if (mode.isEdit) { - $('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo, #toolbar-collaboration').show(); + $('#toolbar-edit, #toolbar-add, #toolbar-undo, #toolbar-redo').show(); } else if (mode.canEdit && mode.canRequestEditRights){ $('#toolbar-edit-document').show(); }