mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-08 06:16:08 +01:00
67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
|
|
/* 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'
|
||
|
|
});
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
});
|