mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-25 04:26:08 +10:00
prevent document unbind since it breaks rails ujs
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user