Sha256: 28c80fe4f7e624c004e37528a162dd74b76ffad585c040bc92722b008bfed292

Contents?: true

Size: 1.67 KB

Versions: 8

Compression:

Stored size: 1.67 KB

Contents

<div id="contacts_cheesecake"></div>
<div id="contacts_filter">
  <%= text_field_tag :filter_query, nil,:autocomplete => :off, :id => :contacts_filter_input %>    
</div>
<div id="contacts_grid">    
  <% @actors.each do |actor|%>
    <%= render :partial => "actors/actor_cheesecake", :locals => {:actor => actor} %>
  <% end %>
</div>
<div id="contacts_grid_extra" style="display:none;">    
  <span id="contacts_grid_extra_total"></span> <span id="contacts_grid_extra_text"></span>
</div>
<div id="contacts_save">
  <form action="<%= update_cheesecake_path %>" method="get" data-remote="true" id="contacts_save_form">
     <input type="submit" id="contacts_save_button" value="Save changes">
     <input type="hidden" id="contacts_save_changes" name="contacts_save_changes">
  </form>
</div>
<br class="clearfloat"> 
<div id="contacts_changes">
  <div id="contacts_changes_title">
   Changes details
  </div>
  <div id="contacts_changes_details">
    <ul>
      <li>Working on it :)</li>
    </ul>
  </div>
</div>
<%= javascript_tag do %>
  $("#center_body").css("width","782px");
  $("#center_body").css("max-width","782px");
  $("#content").css("width","782px");
  $("#contacts_filter_input").Watermark("<%= escape_javascript(I18n.t('search.name')) %>");
  $("#contacts_grid_extra").click(function(){
    $("#contacts_grid").css("overflow-y","scroll");
    $("#contacts_grid").scrollTo("+=308px", 800, {axis:'y'});
    $("#contacts_grid_extra").hide();
  });
  $("#contacts_changes_title").click(function(){
    $("#contacts_changes_details").slideToggle("slow", function(){
      $.scrollTo('#contacts_changes_details' ,300,{axis:'y'});
    });
  });
  <%= render :partial => 'cheesecake' %>
<% end %>

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
social_stream-0.19.0 base/app/views/cheesecake/_index.html.erb
social_stream-base-0.14.0 app/views/cheesecake/_index.html.erb
social_stream-0.18.2 base/app/views/cheesecake/_index.html.erb
social_stream-base-0.13.2 app/views/cheesecake/_index.html.erb
social_stream-0.18.1 base/app/views/cheesecake/_index.html.erb
social_stream-base-0.13.1 app/views/cheesecake/_index.html.erb
social_stream-0.18.0 base/app/views/cheesecake/_index.html.erb
social_stream-base-0.13.0 app/views/cheesecake/_index.html.erb