##// END OF EJS Templates
remove trailing white-spaces from app/views/gantts/show.html.erb...
remove trailing white-spaces from app/views/gantts/show.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7226 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6858:4430983c7420
r7106:0192a5b8a94f
Show More
_block.html.erb
13 lines | 485 B | text/plain | TextLexer
/ app / views / my / _block.html.erb
Jean-Philippe Lang
Allow underscore in block partial name (#2840)....
r2464 <div id="block_<%= block_name.dasherize %>" class="mypage-box">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<div style="float:right;margin-right:16px;z-index:500;">
<%= link_to_remote "", {
:url => { :action => "remove_block", :block => block_name },
Jean-Philippe Lang
Allow underscore in block partial name (#2840)....
r2464 :complete => "removeBlock('block_#{block_name.dasherize}')" },
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :class => "close-icon"
%>
</div>
<div class="handle">
<%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
</div>
Jean-Philippe Lang
- new controller "myController"...
r60 </div>