To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / my / _block.html.erb @ 912:5e80956cc792

History | View | Annotate | Download (479 Bytes)

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