1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 'use strict';
- $(document).ready(function() {
- $('#light-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'light'
- });
- $('#dark-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'dark'
- });
- $('#primary-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'primary'
- });
- $('#success-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'success'
- });
- $('#info-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'info'
- });
- $('#warning-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'warning'
- });
- $('#danger-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'danger'
- });
-
- $('#top-toolbar').toolbar({
- content: '#toolbar-options',
- position: 'top',
- style: 'primary'
- });
- $('#left-toolbar').toolbar({
- content: '#toolbar-options',
- position: 'left',
- style: 'success'
- });
- $('#bottom-toolbar').toolbar({
- content: '#toolbar-options',
- position: 'bottom',
- style: 'info'
- });
- $('#right-toolbar').toolbar({
- content: '#toolbar-options',
- position: 'right',
- style: 'warning'
- });
- $('#click-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'danger',
- event: 'click'
- });
-
- $('#standard-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'primary',
- animation: 'standard',
- });
-
- $('#flip-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'success',
- animation: 'flip',
- });
- $('#grow-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'info',
- animation: 'grow',
- });
-
- $('#flyin-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'warning',
- animation: 'flyin',
- });
-
- $('#bounce-toolbar').toolbar({
- content: '#toolbar-options',
- style: 'danger',
- animation: 'bounce',
- });
- });
|