navs.js 963 B

12345678910111213141516171819
  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: Robust - Responsive Admin Theme
  8. Version: 1.2
  9. Author: PIXINVENT
  10. Author URL: http://www.themeforest.net/user/pixinvent
  11. ==========================================================================================*/
  12. (function(window, document, $) {
  13. 'use strict';
  14. var heightLeft = $('.nav-left + .tab-content').height();
  15. $('ul.nav-left').height(heightLeft);
  16. var heightRight = $('.nav-right + .tab-content').height();
  17. $('ul.nav-right').height(heightRight);
  18. })(window, document, jQuery);