deblan.io-murph/assets/js/addons/toast.js
Simon Vieille 40ed84dea3 init murph
Signed-off-by: Simon Vieille <simon@deblan.fr>
2021-03-24 19:10:26 +01:00

12 lines
197 B
JavaScript

const $ = require('jquery');
module.exports = function() {
$('.toast').toast({
animation: true,
autohide: true,
delay: 5000,
});
$('.toast').toast('show');
};