OSDN Git Service

Makes issue update link work without javascript (#1337).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 29 Jun 2008 19:50:07 +0000 (19:50 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 29 Jun 2008 19:50:07 +0000 (19:50 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1605 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb
app/views/issues/show.rhtml
public/javascripts/application.js

index 16904c2..4ba3445 100644 (file)
@@ -51,7 +51,7 @@ module ApplicationHelper
     link_to(name, "#", :onclick => onclick)
   end
   
-  def show_and_goto_link(name, id, options={})
+  def show_and_goto_js(id, options={})
     onclick = "Element.show('#{id}'); "
     onclick << (options[:focus] ? "Form.Element.focus('#{options[:focus]}'); " : "this.blur(); ")
     onclick << "Element.scrollTo('#{id}'); "
index a3b26be..b71a02e 100644 (file)
@@ -1,5 +1,5 @@
 <div class="contextual">
-<%= show_and_goto_link(l(:button_update), 'update', :class => 'icon icon-edit', :accesskey => accesskey(:edit)) if authorize_for('issues', 'edit') %>
+<%= link_to_if_authorized(l(:button_update), {:controller => 'issues', :action => 'edit', :id => @issue }, :onclick => 'showAndScrollTo("update", "notes"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit)) %>
 <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :issue_id => @issue}, :class => 'icon icon-time' %>
 <%= watcher_tag(@issue, User.current) %>
 <%= link_to_if_authorized l(:button_copy), {:controller => 'issues', :action => 'new', :project_id => @project, :copy_from => @issue }, :class => 'icon icon-copy' %>
index 4e5b67e..1674044 100644 (file)
@@ -10,6 +10,12 @@ function checkAll (id, checked) {
        }
 }
 
+function showAndScrollTo(id, focus) {
+       Element.show(id);
+       if (focus!=null) { Form.Element.focus(focus); }
+       Element.scrollTo(id);
+}
+
 var fileFieldCount = 1;
 
 function addFileField() {