Skip to content
Snippets Groups Projects
Commit ede746bf authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

prevent document unbind since it breaks rails ujs

parent 4c9e47f6
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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)
Loading
Loading
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]
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment