jquery-confirm
jquery-confirm copied to clipboard
Add a toast
jquery-confirm version: v3.3.4
I'm submitting a ... (check one with "x") [ ] bug report [x] feature request [ ] support request
Expected behavior: Hello~ this is an excellent plugin.:+1: Would you like to add toast as in Android? although it's currently available,Make it simpler.
js
var fnToast = function(content) {
var defaults = {
title : null,
theme : 'toast',
buttons : {
okay : {}
},
backgroundDismiss : true,
autoClose : 'okay|2000',
useBootstrap : false,
boxWidth : '200px'
}
var options = $.extend(defaults, options);
options.content = content;
$.alert(options);
}
css
.jconfirm.jconfirm-toast .jconfirm-box .jconfirm-buttons {
display: none !important;
}
.jconfirm.jconfirm-toast .jconfirm-box .jconfirm-content {
text-align: center;
white-space: nowrap;
}