mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-01 09:05:57 +00:00
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
|
/*
|
||
|
Template Name: Monster Admin
|
||
|
Author: Themedesigner
|
||
|
Email: niravjoshi87@gmail.com
|
||
|
File: js
|
||
|
*/
|
||
|
$(function() {
|
||
|
"use strict";
|
||
|
$(".tst1").click(function(){
|
||
|
$.toast({
|
||
|
heading: 'Welcome to Monster admin',
|
||
|
text: 'Use the predefined ones, or specify a custom position object.',
|
||
|
position: 'top-right',
|
||
|
loaderBg:'#ff6849',
|
||
|
icon: 'info',
|
||
|
hideAfter: 3000,
|
||
|
stack: 6
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
$(".tst2").click(function(){
|
||
|
$.toast({
|
||
|
heading: 'Welcome to Monster admin',
|
||
|
text: 'Use the predefined ones, or specify a custom position object.',
|
||
|
position: 'top-right',
|
||
|
loaderBg:'#ff6849',
|
||
|
icon: 'warning',
|
||
|
hideAfter: 3500,
|
||
|
stack: 6
|
||
|
});
|
||
|
|
||
|
});
|
||
|
$(".tst3").click(function(){
|
||
|
$.toast({
|
||
|
heading: 'Welcome to Monster admin',
|
||
|
text: 'Use the predefined ones, or specify a custom position object.',
|
||
|
position: 'top-right',
|
||
|
loaderBg:'#ff6849',
|
||
|
icon: 'success',
|
||
|
hideAfter: 3500,
|
||
|
stack: 6
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
$(".tst4").click(function(){
|
||
|
$.toast({
|
||
|
heading: 'Welcome to Monster admin',
|
||
|
text: 'Use the predefined ones, or specify a custom position object.',
|
||
|
position: 'top-right',
|
||
|
loaderBg:'#ff6849',
|
||
|
icon: 'error',
|
||
|
hideAfter: 3500
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|
||
|
});
|
||
|
|