mirror of
https://github.com/stan220/drunken-parrot-flat-ui.git
synced 2026-09-08 16:28:47 +00:00
25 lines
514 B
JavaScript
25 lines
514 B
JavaScript
(function($) {
|
|
// Switch
|
|
$("[data-toggle='switch']").bootstrapSwitch({baseClass: 'switch'});
|
|
|
|
$('#top-toolbar').toolbar({
|
|
content: '#user-toolbar-options',
|
|
position: 'top'
|
|
});
|
|
|
|
$('#bottom-toolbar').toolbar({
|
|
content: '#user-toolbar-options',
|
|
position: 'bottom'
|
|
});
|
|
|
|
$('#vertical-top-toolbar').toolbar({
|
|
content: '#user-toolbar-options',
|
|
position: 'vertical-top'
|
|
});
|
|
|
|
$('#vertical-bottom-toolbar').toolbar({
|
|
content: '#user-toolbar-options',
|
|
position: 'vertical-bottom'
|
|
});
|
|
|
|
})(jQuery); |