diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 01:10:30 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 01:10:30 +0000 |
commit | d2044709783475c567f23cba86c9b7381b560aea (patch) | |
tree | 53e051e62f60e7b8f6954e660a5e134d1c59c52a /app/views/common | |
parent | 5567f2497b55a2e584e0ccd8c5bc54229e72ba64 (diff) | |
download | redmine-d2044709783475c567f23cba86c9b7381b560aea.tar.gz redmine-d2044709783475c567f23cba86c9b7381b560aea.zip |
remove trailing white-spaces from app/views/common/_tabs.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7268 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/common')
-rw-r--r-- | app/views/common/_tabs.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/common/_tabs.html.erb b/app/views/common/_tabs.html.erb index c99c6a9f4..601977d14 100644 --- a/app/views/common/_tabs.html.erb +++ b/app/views/common/_tabs.html.erb @@ -17,11 +17,11 @@ <script> Event.observe(window, 'load', function() { displayTabsButtons(); }); - Event.observe(window, 'resize', function() { displayTabsButtons(); }); + Event.observe(window, 'resize', function() { displayTabsButtons(); }); </script> <% tabs.each do |tab| -%> - <%= content_tag('div', render(:partial => tab[:partial], :locals => {:tab => tab} ), + <%= content_tag('div', render(:partial => tab[:partial], :locals => {:tab => tab} ), :id => "tab-content-#{tab[:name]}", :style => (tab[:name] != selected_tab ? 'display:none' : nil), :class => 'tab-content') %> |