Fix projects pagination via ajax

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2016-03-10 13:41:23 +01:00
parent 491ac7ce4b
commit ec52d5b14f
No known key found for this signature in database
GPG key ID: 627C5F589F467F17

View file

@ -2,6 +2,7 @@
init: ->
$(".projects-list-filter").off('keyup')
this.initSearch()
this.initPagination()
initSearch: ->
@timer = null
@ -29,3 +30,8 @@
# Change url so if user reload a page - search results are saved
history.replaceState {page: project_filter_url}, document.title, project_filter_url
dataType: "json"
initPagination: ->
$('.projects-list-holder .pagination').bind('ajax:success', (e, data) ->
$('.projects-list-holder').replaceWith(data.html)
)