You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
988 B

/*=========================================================================================
File Name: nav.js
Description: Navigation available in Bootstrap share general markup and styles,
from the base .nav class to the active and disabled states.
Swap modifier classes to switch between each style.
----------------------------------------------------------------------------------------
Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
Version: 1.0
Author: PIXINVENT
Author URL: http://www.themeforest.net/user/pixinvent
==========================================================================================*/
(function(window, document, $) {
'use strict';
var heightLeft = $('.nav-left + .tab-content').height();
$('ul.nav-left').height(heightLeft);
var heightRight = $('.nav-right + .tab-content').height();
$('ul.nav-right').height(heightRight);
})(window, document, jQuery);