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.rhtml @ 723:d41bf754c0f2

History | View | Annotate | Download (485 Bytes)

1
<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
         %>        
9
    </div>
10
     
11
    <div class="handle">
12
        <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
13
        </div>
14
</div>