1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-15 15:32:33 +01:00
Radarr/UI/Shared/Messenger.js

28 lines
739 B
JavaScript
Raw Normal View History

2013-05-12 01:39:32 +02:00
"use strict";
2013-06-19 03:02:23 +02:00
define(function () {
return {
2013-05-12 01:39:32 +02:00
show: function (options) {
if (!options.type) {
options.type = 'info';
}
if (!options.hideAfter) {
switch (options.type) {
case 'info':
options.hideAfter = 5;
break;
case 'error':
options.hideAfter = 0;
}
}
return window.Messenger().post({
message : options.message,
type : options.type,
showCloseButton: true,
hideAfter : options.hideAfter
});
}};
});