jquery-confirm icon indicating copy to clipboard operation
jquery-confirm copied to clipboard

Add a toast

Open autolykos opened this issue 6 years ago • 0 comments

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;
}

autolykos avatar Mar 27 '19 05:03 autolykos