diff options
Diffstat (limited to 'view/theme/redbasic/tpl/comment_item.tpl')
-rwxr-xr-x | view/theme/redbasic/tpl/comment_item.tpl | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/view/theme/redbasic/tpl/comment_item.tpl b/view/theme/redbasic/tpl/comment_item.tpl deleted file mode 100755 index f490483b8..000000000 --- a/view/theme/redbasic/tpl/comment_item.tpl +++ /dev/null @@ -1,67 +0,0 @@ - {{if $threaded}} - <div class="comment-wwedit-wrapper threaded" id="comment-edit-wrapper-{{$id}}" style="display: block;"> - {{else}} - <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;"> - {{/if}} - <form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;"> - <input type="hidden" name="type" value="{{$type}}" /> - <input type="hidden" name="profile_uid" value="{{$profile_uid}}" /> - <input type="hidden" name="parent" value="{{$parent}}" /> - <input type="hidden" name="return" value="{{$return_path}}" /> - <input type="hidden" name="jsreload" value="{{$jsreload}}" /> - <input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" /> - <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpenUI(this,{{$id}});" onBlur="commentCloseUI(this,{{$id}});" ondragenter="linkdropper(event);" ondragleave="linkdropexit(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >{{$comment}}</textarea> - {{if $qcomment}} - <select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});" > - <option value=""></option> - {{foreach $qcomment as $qc}} - <option value="{{$qc}}">{{$qc}}</option> - {{/foreach}} - </select> - {{/if}} - <div id="comment-tools-{{$id}}" class="pt-2 comment-tools"> - <div id="comment-edit-bb-{{$id}}" class="btn-toolbar pull-left"> - <div class="btn-group mr-2"> - <button class="btn btn-outline-secondary btn-sm" title="{{$edbold}}" onclick="insertbbcomment('{{$comment}}','b', {{$id}}); return false;"> - <i class="fa fa-bold comment-icon"></i> - </button> - <button class="btn btn-outline-secondary btn-sm" title="{{$editalic}}" onclick="insertbbcomment('{{$comment}}','i', {{$id}}); return false;"> - <i class="fa fa-italic comment-icon"></i> - </button> - <button class="btn btn-outline-secondary btn-sm" title="{{$eduline}}" onclick="insertbbcomment('{{$comment}}','u', {{$id}}); return false;"> - <i class="fa fa-underline comment-icon"></i> - </button> - <button class="btn btn-outline-secondary btn-sm" title="{{$edquote}}" onclick="insertbbcomment('{{$comment}}','quote', {{$id}}); return false;"> - <i class="fa fa-quote-left comment-icon"></i> - </button> - <button class="btn btn-outline-secondary btn-sm" title="{{$edcode}}" onclick="insertbbcomment('{{$comment}}','code', {{$id}}); return false;"> - <i class="fa fa-terminal comment-icon"></i> - </button> - </div> - <div class="btn-group mr-2"> - <button class="btn btn-outline-secondary btn-sm" title="{{$edurl}}" onclick="insertCommentURL('{{$comment}}',{{$id}}); return false;"> - <i class="fa fa-link comment-icon"></i> - </button> - </div> - {{if $feature_encrypt}} - <div class="btn-group mr-2"> - <button class="btn btn-outline-secondary btn-sm" title="{{$encrypt}}" onclick="red_encrypt('{{$cipher}}','#comment-edit-text-' + '{{$id}}',''); return false;"> - <i class="fa fa-key comment-icon"></i> - </button> - </div> - {{/if}} - {{$comment_buttons}} - </div> - <div class="btn-group float-right" id="comment-edit-submit-wrapper-{{$id}}"> - {{if $preview}} - <button id="comment-edit-presubmit-{{$id}}" class="btn btn-outline-secondary btn-sm" onclick="preview_comment({{$id}}); return false;" title="{{$preview}}"> - <i class="fa fa-eye comment-icon" ></i> - </button> - {{/if}} - <button id="comment-edit-submit-{{$id}}" class="btn btn-primary btn-sm" type="submit" name="button-submit" onclick="post_comment({{$id}}); return false;">{{$submit}}</button> - </div> - </div> - <div class="clear"></div> - </form> - </div> - <div id="comment-edit-preview-{{$id}}" class="comment-edit-preview"></div> |