diff options
author | John Goerzen <jgoerzen@complete.org> | 2008-03-20 19:25:18 +0000 |
---|---|---|
committer | John Goerzen <jgoerzen@complete.org> | 2008-03-20 19:25:18 +0000 |
commit | 8ed97f43d2dbef9e64f474d584861b3aae8253b7 (patch) | |
tree | 2c63cbef34e72969a6fa49f94b289c13f2e81497 | |
parent | 4ff77cc6242603b33778fe961bce7e8bf05f3f94 (diff) | |
download | redmine-8ed97f43d2dbef9e64f474d584861b3aae8253b7.tar.gz redmine-8ed97f43d2dbef9e64f474d584861b3aae8253b7.zip |
Revert "Make an issue's done_ratio field adjustable from the right-click"
Reverts commit r1277
fixes #904
refs #641
This had been working for me in testing for some time, but received
issue #904 saying it broke the context menu. I was able to make it do
so on a new project as well. Will revert and comment in #641 about this.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1278 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/context_menu.rhtml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/app/views/issues/context_menu.rhtml b/app/views/issues/context_menu.rhtml index adb3960ca..b3a03b05d 100644 --- a/app/views/issues/context_menu.rhtml +++ b/app/views/issues/context_menu.rhtml @@ -31,15 +31,6 @@ :selected => @issue.assigned_to.nil?, :disabled => !@can[:update] %></li> </ul> </li> - <li class="folder"> - <a href="#" class="submenu"><%= l(:field_done_ratio) %></a> - <ul> - <% (0..10).map{|x|x*10}.each do |p| -%> - <li><%= context_menu_link "#{p.to_s}%", {:controller => 'issues', :action => 'edit', :id => @issue, 'issue[done_ratio]' => p, :back_to => back_to}, :method => :post, - :selected => (p == @issue.done_ratio), :disabled => !@can[:edit] %></li> - <% end -%> - </ul> - </li> <li><%= context_menu_link l(:button_copy), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue}, :class => 'icon-copy', :disabled => !@can[:copy] %></li> <% else -%> |