Browse Source

Replaced window.hash= by Element.scrollTo()

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1136 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.7.0-RC1
Jean-Philippe Lang 16 years ago
parent
commit
93ef8b7f77

+ 1
- 1
app/helpers/application_helper.rb View File

@@ -59,7 +59,7 @@ module ApplicationHelper
def show_and_goto_link(name, id, options={})
onclick = "Element.show('#{id}'); "
onclick << (options[:focus] ? "Form.Element.focus('#{options[:focus]}'); " : "this.blur(); ")
onclick << "location.href='##{id}-anchor'; "
onclick << "Element.scrollTo('#{id}'); "
onclick << "return false;"
link_to(name, "#", options.merge(:onclick => onclick))
end

+ 1
- 1
app/views/issues/_edit.rhtml View File

@@ -32,7 +32,7 @@
:method => 'post',
:update => 'preview',
:with => 'Form.serialize("issue-form")',
:complete => "location.hash='preview'"
:complete => "Element.scrollTo('preview')"
}, :accesskey => accesskey(:preview) %>
<% end %>


+ 1
- 2
app/views/issues/new.rhtml View File

@@ -12,9 +12,8 @@
:method => 'post',
:update => 'preview',
:with => "Form.serialize('issue-form')",
:complete => "location.href='#preview-top'"
:complete => "Element.scrollTo('preview')"
}, :accesskey => accesskey(:preview) %>
<% end %>

<a name="preview-top"></a>
<div id="preview" class="wiki"></div>

+ 0
- 1
app/views/issues/show.rhtml View File

@@ -89,7 +89,6 @@ end %>
<% end %>

<% if authorize_for('issues', 'edit') %>
<a name="update-anchor"></a>
<div id="update" style="display:none;">
<h3><%= l(:button_update) %></h3>
<%= render :partial => 'edit' %>

+ 1
- 2
app/views/wiki/edit.rhtml View File

@@ -16,12 +16,11 @@
:method => 'post',
:update => 'preview',
:with => "Form.serialize('wiki_form')",
:complete => "location.href='#preview-top'"
:complete => "Element.scrollTo('preview')"
}, :accesskey => accesskey(:preview) %></p>
<%= wikitoolbar_for 'content_text' %>
<% end %>

<a name="preview-top"></a>
<div id="preview" class="wiki"></div>

<% content_for :header_tags do %>

Loading…
Cancel
Save