mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 22:06:05 +01:00
67 lines
1.6 KiB
JavaScript
Executable File
67 lines
1.6 KiB
JavaScript
Executable File
/* jGrowl notifications */
|
|
|
|
$(function() {
|
|
|
|
$('.growl-example-1').click(function() {
|
|
|
|
$.jGrowl("jGrowl notification example with lorem ipsum dolor sic amet.", {
|
|
sticky: false,
|
|
position: 'top-right',
|
|
theme: 'bg-blue-alt'
|
|
});
|
|
|
|
});
|
|
|
|
$('.growl-example-2').click(function() {
|
|
|
|
$.jGrowl("jGrowl notification example with lorem ipsum dolor sic amet.", {
|
|
sticky: false,
|
|
position: 'top-right',
|
|
theme: 'bg-azure'
|
|
});
|
|
|
|
});
|
|
|
|
$('.growl-example-3').click(function() {
|
|
|
|
$.jGrowl("jGrowl notification example with lorem ipsum dolor sic amet.", {
|
|
sticky: false,
|
|
position: 'top-right',
|
|
theme: 'bg-orange'
|
|
});
|
|
|
|
});
|
|
|
|
$('.growl-example-4').click(function() {
|
|
|
|
$.jGrowl("jGrowl notification example with lorem ipsum dolor sic amet.", {
|
|
sticky: false,
|
|
position: 'top-right',
|
|
theme: 'bg-gray'
|
|
});
|
|
|
|
});
|
|
|
|
$('.growl-example-5').click(function() {
|
|
|
|
$.jGrowl("jGrowl notification example with lorem ipsum dolor sic amet.", {
|
|
sticky: false,
|
|
position: 'top-right',
|
|
theme: 'bg-green'
|
|
});
|
|
|
|
});
|
|
|
|
$('.growl-example-6').click(function() {
|
|
|
|
$.jGrowl("jGrowl notification example with lorem ipsum dolor sic amet.", {
|
|
sticky: false,
|
|
position: 'top-right',
|
|
theme: 'bg-red'
|
|
});
|
|
|
|
});
|
|
|
|
|
|
});
|