Icon Names
Design and Skin Customization
Hey Guys
Where can we find a list of the icon names? I would like to make a custom button.
Thanks
updated by @the-patria-company: 05/17/16 04:21:58AM
{jrCore_module_url module="jrAction" assign="murl"}
<a href="javascript:void(0)" onclick="javascript:jqcc.cometchat.chatWith('{$_user_id}');">
{if $item.action_module != 'jrLike'}
{jrLike_button item=$item action="like" module="jrAction"}
{jrLike_button item=$item action="dislike" module="jrAction"}
{else}
<img src="https://assemble-together.org/data/media/0/0/jrSmiley_2_smiley_image.png?_v=" width=24px />
{/if}
{if jrProfile_is_profile_owner($_profile_id)}
<a href="{$jamroom_url}/{$profile_url}"><h1 class="profile_name">{$profile_name}</h1></a>
{else}
<a href="javascript:void(0)" onclick="javascript:jqcc.cometchat.chatWith('{$user_name}');"><h1 class="profile_name">{$profile_name}</h1></a>
{/if}
jrCore_register_module_feature('jrCore', 'javascript', 'jrElastic', 'jrElastic.js');
<a href="javascript:void(0)" onclick="javascript:jqcc.cometchat.chatWith({$_f["`$item["_user_id"]`"]});">
{if jrCore_module_is_active('jrAction')}
{jrCore_lang skin=$_conf.jrCore_active_skin id=51 default="activity feed" assign="at"}
<li><a onclick="atAction_modal_form()" title="{$at}">{jrCore_image image="A-T-Pencil.png" width=20 height=20 alt=$at style="margin-top:-3px"}</a></li>
{/if}
/**
* Display a modal new action form
*/
function atAction_modal_form(){
$('#new_action').modal({
onOpen: function (dialog) {
dialog.overlay.fadeIn('fast', function () {
dialog.container.slideDown('fast', function () {
dialog.data.fadeIn('fast');
});
});
},
onClose: function (dialog) {
dialog.data.fadeOut('fast', function () {
dialog.container.hide('fast', function () {
dialog.overlay.fadeOut('fast', function () {
$.modal.close();
});
});
});
},
overlayClose:true
});
}
{* This is the new action form - shows as a modal window when the new action icon is clicked on *}
<div id="new_action" class="search_box" style="display:none;">
{jrAction_form class="form_text" value=$at style="width:70%"}
<div style="float:right;clear:both;margin-top:3px;">
<a class="simplemodal-close">{jrCore_icon icon="close" size=20}</a>
</div>
<div class="clear"></div>
</div>