##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9850:7e5bad993de6
r15119:53710d80fc88
Show More
_block.html.erb
10 lines | 383 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;">
Jean-Philippe Lang
Removes most of the ajax stuff on my page layout....
r9850 <%= link_to "", {:action => "remove_block", :block => block_name}, :method => 'post', :class => "close-icon" %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/_block.html.erb...
r7132
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="handle">
Toshi MARUYAMA
replace tabs to spaces at app/views/my/_block.html.erb...
r7225 <%= render :partial => "my/blocks/#{block_name}", :locals => { :user => user } %>
</div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/my/_block.html.erb...
r7132 </div>