diff options
author | Rocky <rockyiii@gmx.net> | 2025-02-01 10:35:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-02-01 10:35:03 +0000 |
commit | c07cdb30fa1ea73cb047932898d876e23ebb0293 (patch) | |
tree | 3a6fe8bc9ecb5058cf9f0d46890bf3051f19bd63 /view/tpl | |
parent | 03d1f3383ed56ddcdaee844f435a39c4b987cd74 (diff) | |
download | volse-hubzilla-c07cdb30fa1ea73cb047932898d876e23ebb0293.tar.gz volse-hubzilla-c07cdb30fa1ea73cb047932898d876e23ebb0293.tar.bz2 volse-hubzilla-c07cdb30fa1ea73cb047932898d876e23ebb0293.zip |
add highlight/mark button
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/comment_item.tpl | 3 | ||||
-rw-r--r-- | view/tpl/jot.tpl | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 76b756846..059e2793a 100644 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -37,6 +37,9 @@ <button class="btn btn-outline-secondary btn-sm border-0" title="{{$edcode}}" onclick="insertbbcomment('{{$comment}}','code', {{$id}}); return false;"> <i class="bi bi-code comment-icon"></i> </button> + <button class="btn btn-outline-secondary btn-sm border-0" title="highlight" onclick="insertbbcomment('{{$comment}}','mark', {{$id}}); return false;"> + <i class="bi bi-highlighter comment-icon"></i> + </button> </div> <div class="btn-group me-2"> {{if $can_upload}} diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 1cecee906..a6ec453e7 100644 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -116,6 +116,9 @@ <button type="button" id="main-editor-code" class="btn btn-outline-secondary btn-sm border-0" title="{{$code}}" onclick="inserteditortag('code', 'profile-jot-text'); return false;"> <i class="bi bi-code jot-icons"></i> </button> + <button type="button" id="main-editor-bold" class="btn btn-outline-secondary btn-sm border-0" title="highlight" onclick="inserteditortag('mark', 'profile-jot-text'); return false;"> + <i class="bi bi-highlighter jot-icons"></i> + </button> </div> {{/if}} {{if $visitor}} |