diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-29 18:32:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-11-29 18:32:28 +0000 |
commit | cce80c690c0d1f7cafe96ecd186d632718312feb (patch) | |
tree | 69c284525dee2691378809613b678a317989024d /app/views | |
parent | 740dc53aab0c7cd9adf582c992cf0daf885a94c3 (diff) | |
download | redmine-cce80c690c0d1f7cafe96ecd186d632718312feb.tar.gz redmine-cce80c690c0d1f7cafe96ecd186d632718312feb.zip |
Adds an autoscroll div around time entry list and report (#8809).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7982 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/time_entry_reports/report.html.erb | 2 | ||||
-rw-r--r-- | app/views/timelog/_list.html.erb | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/views/time_entry_reports/report.html.erb b/app/views/time_entry_reports/report.html.erb index feb31e82c..0af89a1de 100644 --- a/app/views/time_entry_reports/report.html.erb +++ b/app/views/time_entry_reports/report.html.erb @@ -32,6 +32,7 @@ </div> <% unless @hours.empty? %> +<div class="autoscroll"> <table class="list" id="time-report"> <thead> <tr> @@ -59,6 +60,7 @@ </tr> </tbody> </table> +</div> <% other_formats_links do |f| %> <%= f.link_to 'CSV', :url => params %> diff --git a/app/views/timelog/_list.html.erb b/app/views/timelog/_list.html.erb index f0454bf9a..4e86d7833 100644 --- a/app/views/timelog/_list.html.erb +++ b/app/views/timelog/_list.html.erb @@ -1,5 +1,6 @@ <% form_tag({}) do -%> <%= hidden_field_tag 'back_url', url_for(params) %> +<div class="autoscroll"> <table class="list time-entries"> <thead> <tr> @@ -48,6 +49,7 @@ <% end -%> </tbody> </table> +</div> <% end -%> <%= context_menu time_entries_context_menu_path %> |