prevent document unbind since it breaks rails ujs

This commit is contained in:
Dmitriy Zaporozhets 2013-06-21 23:47:42 +03:00
parent 4c9e47f6e0
commit ede746bf07
3 changed files with 2 additions and 3 deletions

View file

@ -53,7 +53,6 @@ window.stopSpinner = ->
window.unbindEvents = ->
$(document).unbind('scroll')
$(document).off('scroll')
$(document).off('click')
document.addEventListener("page:fetch", startSpinner)
document.addEventListener("page:fetch", unbindEvents)

View file

@ -1,6 +1,6 @@
class GroupsController < ApplicationController
respond_to :html
before_filter :group, except: [:new, :create, :people]
before_filter :group, except: [:new, :create]
# Authorize
before_filter :authorize_read_group!, except: [:new, :create]

View file

@ -21,7 +21,7 @@ class UsersGroupsController < ApplicationController
@users_group.destroy
respond_to do |format|
format.html { redirect_to people_group_path(@group), notice: 'User was successfully removed from group.' }
format.html { redirect_to people_group_path(@group), notice: 'User was successfully removed from group.' }
format.js { render nothing: true }
end
end