1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 01:14:24 +03:00
ifhub.club/application/frontend/components/comment/toolbar.comment.tpl
2015-02-17 21:40:36 +07:00

25 lines
851 B
Smarty

{**
* Тулбар
* Кнопка обновления комментариев
*}
{capture 'toolbar_item'}
<div class="toolbar-comments-update js-toolbar-comments-update"><i></i></div>
<div class="toolbar-comments-count js-toolbar-comments-count" style="display: none;" title="{$aLang.comments.comment.count_new}"></div>
{/capture}
{component 'toolbar' template='item'
classes = 'js-comments-toolbar'
mods = 'comments'
buttons = [
[
classes => 'toolbar-comments-update js-toolbar-comments-update',
attributes => [ 'title' => {lang 'comments.comment.count_new'} ],
icon => 'comment-update'
],
[
classes => 'js-toolbar-comments-count',
attributes => [ 'title' => {lang 'comments.comment.count_new'} ],
text => '12'
]
]}