navs.js 987 B

123456789101112131415161718
  1. /*=========================================================================================
  2. File Name: nav.js
  3. Description: Navigation available in Bootstrap share general markup and styles,
  4. from the base .nav class to the active and disabled states.
  5. Swap modifier classes to switch between each style.
  6. ----------------------------------------------------------------------------------------
  7. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  8. Author: PIXINVENT
  9. Author URL: http://www.themeforest.net/user/pixinvent
  10. ==========================================================================================*/
  11. (function(window, document, $) {
  12. 'use strict';
  13. var heightLeft = $('.nav-left + .tab-content').height();
  14. $('ul.nav-left').height(heightLeft);
  15. var heightRight = $('.nav-right + .tab-content').height();
  16. $('ul.nav-right').height(heightRight);
  17. })(window, document, jQuery);