diff options
author | Go MAEDA <maeda@farend.jp> | 2019-03-05 14:52:09 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-03-05 14:52:09 +0000 |
commit | bdcadb8ced7f01a58a6423f62a6c48c632a08c0c (patch) | |
tree | f13b710225ed9344c91dc2b529d12a4b82710e7f /app/views | |
parent | 765274986c26af38ca49aab83dfff57efb055bd9 (diff) | |
download | redmine-bdcadb8ced7f01a58a6423f62a6c48c632a08c0c.tar.gz redmine-bdcadb8ced7f01a58a6423f62a6c48c632a08c0c.zip |
Allow collapse/expand in gantt chart (#6417).
Patch by Yuichi HARADA.
git-svn-id: http://svn.redmine.org/redmine/trunk@17929 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/gantts/show.html.erb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 90f6a85fa..a51abdcde 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -375,6 +375,7 @@ resizableSubjectColumn(); $("#draw_relations").change(drawGanttHandler); $("#draw_progress_line").change(drawGanttHandler); + $('div.gantt_subjects .expander').on('click', ganttEntryClick); }); $(window).resize(function() { drawGanttHandler(); |