diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-13 07:03:30 +0100 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-13 07:03:30 +0100 |
commit | d238cbea198cf7198c7914589deeb459b62eedc7 (patch) | |
tree | 35941184bb6d0a23b7694b1ce2f4ad8fc348e264 | |
parent | 921a2e0dc47400e5a280533f021e6c2887b10be3 (diff) | |
download | volse-hubzilla-d238cbea198cf7198c7914589deeb459b62eedc7.tar.gz volse-hubzilla-d238cbea198cf7198c7914589deeb459b62eedc7.tar.bz2 volse-hubzilla-d238cbea198cf7198c7914589deeb459b62eedc7.zip |
Regrouped post buttons
-rw-r--r-- | view/tpl/jot.tpl | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 38597a6a1..1f655998d 100644 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -60,15 +60,15 @@ {{/if}} </div> <div class="btn-group"> - <button id="main-editor-quote" class="btn btn-default btn-sm" title="{{$quote}}" onclick="inserteditortag('quote', 'profile-jot-text'); return false;"> - <i class="icon-quote-left jot-icons"></i> - </button> - <button id="main-editor-code" class="btn btn-default btn-sm" title="{{$code}}" onclick="inserteditortag('code', 'profile-jot-text'); return false;"> - <i class="icon-terminal jot-icons"></i> - </button> <button id="profile-link-wrapper" class="btn btn-default btn-sm" title="{{$weblink}}" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;"> <i id="profile-link" class="icon-link jot-icons"></i> + </button> + <button id="main-editor-code" class="btn btn-default btn-sm" title="{{$code}}" onclick="inserteditortag('code', 'profile-jot-text'); return false;"> + <i class="icon-terminal jot-icons"></i> </button> + <button id="main-editor-quote" class="btn btn-default btn-sm" title="{{$quote}}" onclick="inserteditortag('quote', 'profile-jot-text'); return false;"> + <i class="icon-quote-left jot-icons"></i> + </button> </div> <div class="btn-group hidden-xs"> <button id="main-editor-bold" class="btn btn-default btn-sm" title="{{$bold}}" onclick="inserteditortag('b', 'profile-jot-text'); return false;"> @@ -116,6 +116,7 @@ <i id="more-tools-icon" class="icon-caret-down jot-icons"></i> </button> <ul class="dropdown-menu dropdown-menu-right" role="menu"> + <li class="visible-xs"><a href="#" onclick="showacl();return false;"><i class="icon-{{$lockstate}}"></i> {{lockstate}}</a></li> <!-- li class="visible-xs"><a href="#" onclick="preview_post();return false;"><i class="icon-eye-open"></i> {{$preview}}</a></li --> {{if $visitor}} <li class="divider visible-xs"></li> @@ -132,7 +133,7 @@ <li class="visible-xs visible-sm"><a href="#" onclick="jotGetExpiry(); return false;"><i class="icon-eraser"></i> {{$expires}}</a></li> {{/if}} {{if $feature_voting}} - <li class="visible-xs visible-sm"><a href="#" onclick="toggleVoting(); return false;"><i id="profile-voting-sub" class="icon-check-empty"></i> {{$voting}}</a></li> + <!-- li class="visible-xs visible-sm"><a href="#" onclick="toggleVoting(); return false;"><i id="profile-voting-sub" class="icon-check-empty"></i> {{$voting}}</a></li--> {{/if}} </ul> </div> |