Skip to content

Instantly share code, notes, and snippets.

@Juribiyan
Created March 26, 2014 02:37
Show Gist options
  • Save Juribiyan/9775948 to your computer and use it in GitHub Desktop.
Save Juribiyan/9775948 to your computer and use it in GitHub Desktop.
{* Вставить этот код примерно внутрь <span class="extrabtns">
Классы кнопок (spritebtn) могут не совпадать в твоими, там разберешься. Надо оформлять так же как кнопки скрытия треда и т. п.
Главное оставть data- свойства и класс "qrl"
*}
{* img_board_page.tpl, ОП-пост (первое появление) *}
<a href="#" data-parent="{if $post.parentid eq 0}{$post.id}{else}{$post.parentid}{/if}" class="qrl" title="{t}Quick Reply{/t}"><img src="{$boardpath}css/icons/blank.gif" border="0" class="quickreply spritebtn" alt="quickreply" /></a>
{* img_board_page.tpl, Обычный пост (второе появление) *}
<a href="#" data-parent="{$post.parentid}" data-postnum="{$post.id}" class="qrl" title="{t}Quick Reply{/t} в тред {$post.parentid}">
<img src="{$cwebpath}css/icons/blank.gif" border="0" class="quickreply spritebtn" alt="quickreply">
</a>
{* img_thread.tpl, ОП-пост (первое появление) *}
<a href="#" data-parent="{$post.id}" data-boardname="{$board.name}" data-postnum="{$post.id}" class="qrl" title="{t}Quick Reply{/t} в тред {$post.id}">
<img src="{$cwebpath}css/icons/blank.gif" border="0" class="quickreply spritebtn" alt="quickreply">
</a>
{* img_thread.tpl, Обычный пост (второе появление) *}
<a href="#" data-parent="{$post.id}" data-boardname="{$board.name}" data-postnum="{$post.id}" class="qrl" title="{t}Quick Reply{/t} в тред {$post.id}">
<img src="{$cwebpath}css/icons/blank.gif" border="0" class="quickreply spritebtn" alt="quickreply">
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment