Project activity inifinite scroll paging
This commit is contained in:
parent
16e67fd8be
commit
0261b0c64c
3 changed files with 8 additions and 1 deletions
|
@ -46,7 +46,7 @@ class ProjectsController < ApplicationController
|
|||
|
||||
def show
|
||||
limit = (params[:limit] || 20).to_i
|
||||
@events = @project.events.recent.limit(limit)
|
||||
@events = @project.events.recent.limit(limit).offset(params[:offset] || 0)
|
||||
|
||||
respond_to do |format|
|
||||
format.html do
|
||||
|
@ -57,6 +57,7 @@ class ProjectsController < ApplicationController
|
|||
render "projects/empty"
|
||||
end
|
||||
end
|
||||
format.js
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue