user-profile.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*=========================================================================================
  2. File Name: user-profile.js
  3. Description: User Profile jQuery Plugin Intialization
  4. --------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. $(document).ready(function(){
  10. /************************************
  11. * Block Examples *
  12. ************************************/
  13. $('.block-element').on('click', function() {
  14. var block_ele = $(this);
  15. $(block_ele).block({
  16. message: '<div class="spinner-border text-primary"></div>',
  17. timeout: 2000, //unblock after 2 seconds
  18. overlayCSS: {
  19. backgroundColor: '#fff',
  20. opacity: 0.8,
  21. cursor: 'wait'
  22. },
  23. css: {
  24. border: 0,
  25. padding: 0,
  26. backgroundColor: 'transparent'
  27. }
  28. });
  29. });
  30. // profile-header-nav toggle
  31. $('.navbar-toggler').on('click',function(){
  32. $('.navbar-collapse').toggleClass('show');
  33. $('.navbar-toggler-icon i').toggleClass('icon-x icon-align-justify');
  34. });
  35. });