Sha256: c7f4b4b86a728f234bee21f8e8cde16cc7cce88d14d61d528128a56d6455feb2
Contents?: true
Size: 829 Bytes
Versions: 9
Compression:
Stored size: 829 Bytes
Contents
<% # Clients of this partial must supply the following variables: # thread # user %> <% subscription = thread.subscription_for(user) %> <% if thread.can_be_read_by?(user) %> <%= stylesheet_link_tag "commontator/application", :media => "all" %> <div id="thread_<%= thread.id %>_div" class="thread" style="display: none;"> <% if @commontator_thread_show %> <%= render :partial => 'commontator/threads/show', :locals => {:thread => thread, :user => user} %> <% else %> <%= link_to "Show #{thread.config.comment_name.pluralize} (#{subscription ? subscription.unread + '/' + thread.comments.count : thread.comments.count})", \ commontator.thread_path(thread), :remote => true %> <% end %> </div> <% end %>
Version data entries
9 entries across 9 versions & 1 rubygems