Created
September 26, 2014 06:02
-
-
Save asciimike/73eaa35c2b5e5bc21efb to your computer and use it in GitHub Desktop.
Firechat template modification example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.user-chat-username { | |
color:red; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li class="user-chat-username" data-user-id='<%- id %>' data-user-name='<%- name %>'> | |
<a href='#!' class='clearfix'> | |
<% if (disableActions) { %> | |
<span class='left fivesixth clipped' title='<%- name %>'><%- name %></span> | |
<% } else { %> | |
<span data-event='firechat-user-chat' class='left fivesixth clipped' title='<%- name %>'><%- name %></span> | |
<span data-event='firechat-user-chat' class='icon user-chat right' title='Invite to Private Chat'> </span> | |
<% } %> | |
</a> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment