From ad98ec6d6d2eb576173d07200ab5324aeb077ecc Mon Sep 17 00:00:00 2001 From: billz Date: Wed, 23 Oct 2019 12:19:39 +0100 Subject: [PATCH] Delete obsolete sidebar load/resize function --- app/js/custom.js | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/app/js/custom.js b/app/js/custom.js index acf0fe86..25c4aeeb 100644 --- a/app/js/custom.js +++ b/app/js/custom.js @@ -258,38 +258,6 @@ var themes = { "terminal" : "terminal.css", } -//Loads the correct sidebar on window load, -//collapses the sidebar on window resize. -// Sets the min-height of #page-wrapper to window size -$(function() { - $(window).bind("load resize", function() { - topOffset = 50; - width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width; - if (width < 768) { - $('div.navbar-collapse').addClass('collapse'); - topOffset = 100; // 2-row-menu - } else { - $('div.navbar-collapse').removeClass('collapse'); - } - - height = ((this.window.innerHeight > 0) ? this.window.innerHeight : this.screen.height) - 1; - height = height - topOffset; - if (height < 1) height = 1; - if (height > topOffset) { - $("#page-wrapper").css("min-height", (height) + "px"); - } - }); - - var url = window.location; - var element = $('ul.nav a').filter(function() { - return this.href == url || url.href.indexOf(this.href) == 0; - }).addClass('active').parent().parent().addClass('in').parent(); - if (element.is('li')) { - element.addClass('active'); - } -}); - - $(document) .ajaxSend(setCSRFTokenHeader) .ready(contentLoaded)