0e2288565d
The first iteration for config editor and server reload from the web interface.
25 lines
No EOL
719 B
JavaScript
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();
|
|
} |