tstor/assets/js/toasts.js
Antonio Navarro Perez 0e2288565d
Reload server and edit configuration. (#15)
The first iteration for config editor and server reload from the web interface.
2020-11-08 18:19:25 +01:00

25 lines
No EOL
719 B
JavaScript

function toastError(msg) {
Toastify({
text: msg,
duration: 5000,
newWindow: true,
close: true,
gravity: "top", // `top` or `bottom`
position: 'right', // `left`, `center` or `right`
backgroundColor: "red",
stopOnFocus: true, // Prevents dismissing of toast on hover
}).showToast();
}
function toastInfo(msg) {
Toastify({
text: msg,
duration: 5000,
newWindow: true,
close: true,
gravity: "top", // `top` or `bottom`
position: 'right', // `left`, `center` or `right`
backgroundColor: "green",
stopOnFocus: true, // Prevents dismissing of toast on hover
}).showToast();
}