mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
13 lines
No EOL
221 B
JavaScript
13 lines
No EOL
221 B
JavaScript
|
|
|
|
|
|
function generateNotify(message, type) {
|
|
// type = danger, warning, info, successs
|
|
$.notify({
|
|
// options
|
|
message: message
|
|
}, {
|
|
// settings
|
|
type: type
|
|
});
|
|
} |