Dashboard sipadu mbip
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.

custom-toolbar.js 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 'use strict';
  2. $(document).ready(function() {
  3. $('#light-toolbar').toolbar({
  4. content: '#toolbar-options',
  5. style: 'light'
  6. });
  7. $('#dark-toolbar').toolbar({
  8. content: '#toolbar-options',
  9. style: 'dark'
  10. });
  11. $('#primary-toolbar').toolbar({
  12. content: '#toolbar-options',
  13. style: 'primary'
  14. });
  15. $('#success-toolbar').toolbar({
  16. content: '#toolbar-options',
  17. style: 'success'
  18. });
  19. $('#info-toolbar').toolbar({
  20. content: '#toolbar-options',
  21. style: 'info'
  22. });
  23. $('#warning-toolbar').toolbar({
  24. content: '#toolbar-options',
  25. style: 'warning'
  26. });
  27. $('#danger-toolbar').toolbar({
  28. content: '#toolbar-options',
  29. style: 'danger'
  30. });
  31. $('#top-toolbar').toolbar({
  32. content: '#toolbar-options',
  33. position: 'top',
  34. style: 'primary'
  35. });
  36. $('#left-toolbar').toolbar({
  37. content: '#toolbar-options',
  38. position: 'left',
  39. style: 'success'
  40. });
  41. $('#bottom-toolbar').toolbar({
  42. content: '#toolbar-options',
  43. position: 'bottom',
  44. style: 'info'
  45. });
  46. $('#right-toolbar').toolbar({
  47. content: '#toolbar-options',
  48. position: 'right',
  49. style: 'warning'
  50. });
  51. $('#click-toolbar').toolbar({
  52. content: '#toolbar-options',
  53. style: 'danger',
  54. event: 'click'
  55. });
  56. $('#standard-toolbar').toolbar({
  57. content: '#toolbar-options',
  58. style: 'primary',
  59. animation: 'standard',
  60. });
  61. $('#flip-toolbar').toolbar({
  62. content: '#toolbar-options',
  63. style: 'success',
  64. animation: 'flip',
  65. });
  66. $('#grow-toolbar').toolbar({
  67. content: '#toolbar-options',
  68. style: 'info',
  69. animation: 'grow',
  70. });
  71. $('#flyin-toolbar').toolbar({
  72. content: '#toolbar-options',
  73. style: 'warning',
  74. animation: 'flyin',
  75. });
  76. $('#bounce-toolbar').toolbar({
  77. content: '#toolbar-options',
  78. style: 'danger',
  79. animation: 'bounce',
  80. });
  81. });