Fixed bug of content not expanding on page load

This commit is contained in:
brb 2014-11-19 23:17:36 +01:00
parent 05ec31b624
commit 46110287b3
3 changed files with 7 additions and 3 deletions

View file

@ -110,12 +110,12 @@
$rootScope.showQueue = function () {
//$.fancybox.open();
$('#SideBar').css('display', '').fadeIn(400);
$('#right-component').css('margin-right', "350px");
$('#right-component').removeClass('lgcolumn_expanded');
};
$rootScope.hideQueue = function () {
//$.fancybox.close();
$('#SideBar').fadeOut();
$('#right-component').css('margin-right', '0px');
$('#right-component').addClass('lgcolumn_expanded');
};
$scope.toggleQueue = function () {
if ($('#SideBar').css('display') == 'none') {