summaryrefslogtreecommitdiffstats
path: root/app/views/my/_block.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/my/_block.rhtml')
-rw-r--r--app/views/my/_block.rhtml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/my/_block.rhtml b/app/views/my/_block.rhtml
new file mode 100644
index 000000000..3f72bdaf1
--- /dev/null
+++ b/app/views/my/_block.rhtml
@@ -0,0 +1,16 @@
+<div id="block_<%= block_name %>" class="mypage-box">
+
+ <div style="float:right;margin-right:16px;z-index:500;">
+ <%= link_to_remote "", {
+ :url => { :action => "remove_block", :block => block_name },
+ :complete => "removeBlock('block_#{block_name}')",
+ :loading => "Element.show('indicator')",
+ :loaded => "Element.hide('indicator')" },
+ :class => "close-icon"
+ %>
+ </div>
+
+ <div class="handle">
+ <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
+ </div>
+</div> \ No newline at end of file