Commit 0aef2fe437d5f2e46a2de379610352bb97d65f6c

Authored by Cedric Gatay
1 parent 89a03a34

I have to domesticate RubyMine, keymapping is not the same as IntelliJ and I hav…

…e deleted a character by mistake...
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/helpers/commits_helper.rb
@@ -20,7 +20,7 @@ module CommitsHelper @@ -20,7 +20,7 @@ module CommitsHelper
20 def more_commits_link 20 def more_commits_link
21 offset = params[:offset] || 0 21 offset = params[:offset] || 0
22 limit = params[:limit] || 100 22 limit = params[:limit] || 100
23 - link_to "More", project_commits_path(project, :offset => offset.to_i + limit.to_i, :limit => limit), 23 + link_to "More", project_commits_path(@project, :offset => offset.to_i + limit.to_i, :limit => limit),
24 :remote => true, :class => "lite_button vm", :style => "text-align:center; width:930px; ", :id => "more-commits-link" 24 :remote => true, :class => "lite_button vm", :style => "text-align:center; width:930px; ", :id => "more-commits-link"
25 end 25 end
26 26