Moved the turbolinks listener from application.js to the corresponding issuable sidebar file

This commit is contained in:
Jose Ivan Vargas 2017-01-25 12:25:43 -06:00
parent ae65272bbf
commit ffc5ec7d77
2 changed files with 9 additions and 8 deletions

View File

@ -248,14 +248,6 @@
$window.off('resize.app').on('resize.app', function () {
return fitSidebarForSize();
});
window.addEventListener('beforeunload', function() {
// collapsed_gutter cookie hides the sidebar
var bpBreakpoint = bp.getBreakpointSize();
if (bpBreakpoint === 'xs' || bpBreakpoint === 'sm') {
Cookies.set('collapsed_gutter', true);
}
});
gl.awardsHandler = new AwardsHandler();
new Aside();
// bind sidebar events

View File

@ -1,5 +1,7 @@
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-new, comma-dangle, quotes, prefer-arrow-callback, consistent-return, one-var, no-var, one-var-declaration-per-line, no-underscore-dangle, max-len */
/* global UsersSelect */
/* global Cookies */
/* global bp */
(function() {
this.IssuableContext = (function() {
@ -37,6 +39,13 @@
}, 0);
}
});
window.addEventListener('beforeunload', function() {
// collapsed_gutter cookie hides the sidebar
var bpBreakpoint = bp.getBreakpointSize();
if (bpBreakpoint === 'xs' || bpBreakpoint === 'sm') {
Cookies.set('collapsed_gutter', true);
}
});
$(".right-sidebar").niceScroll();
}