You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_block.rhtml 485B

1234567891011121314
  1. <div id="block_<%= block_name.dasherize %>" class="mypage-box">
  2. <div style="float:right;margin-right:16px;z-index:500;">
  3. <%= link_to_remote "", {
  4. :url => { :action => "remove_block", :block => block_name },
  5. :complete => "removeBlock('block_#{block_name.dasherize}')" },
  6. :class => "close-icon"
  7. %>
  8. </div>
  9. <div class="handle">
  10. <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
  11. </div>
  12. </div>