murph-skeleton/assets/js/admin/modules/toast.js

12 lines
175 B
JavaScript
Raw Normal View History

2021-06-15 14:16:07 +02:00
const $ = require('jquery')
2021-03-24 12:27:07 +01:00
2021-06-15 14:16:07 +02:00
module.exports = function () {
$('.toast').toast({
animation: true,
autohide: true,
delay: 5000
})
2021-03-24 12:27:07 +01:00
2021-06-15 14:16:07 +02:00
$('.toast').toast('show')
}