diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index 6edef06fc6..c27e79e208 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -362,6 +362,7 @@ class Conversation $tpl = Renderer::getMarkupTemplate('jot.tpl'); $o .= Renderer::replaceMacros($tpl, [ + '$post' => $this->l10n->t($x['content'] ? 'Post to group' : 'Post'), '$new_post' => $this->l10n->t('New Post'), '$return_path' => $this->args->getQueryString(), '$action' => 'item', diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index 83cc15751a..5ac7b86769 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -84,8 +84,6 @@ $(document).ready(function () { let $mentionButton = $("#mention-link-button"); if ($mentionButton.length) { $mentionButton.appendTo("#topbar-second > .container > #navbar-button").addClass("pull-right"); - $("#mention-link").addClass("btn-sm "); - $("#mention-link > span i").addClass("fa-2x"); if ($mentionButton.hasClass("modal-open")) { $mentionButton.on("click", function (e) { e.preventDefault(); diff --git a/view/theme/frio/templates/jot.tpl b/view/theme/frio/templates/jot.tpl index cfab144569..d8aa28d4cb 100644 --- a/view/theme/frio/templates/jot.tpl +++ b/view/theme/frio/templates/jot.tpl @@ -1,5 +1,5 @@ {{* The button to open the jot - in This theme we move the button with js to the second nav bar *}} - +{{$post}}