2013-05-11 23:39:32 +00:00
|
|
|
"use strict";
|
2013-06-19 01:02:23 +00:00
|
|
|
define(function () {
|
|
|
|
return {
|
2013-05-11 23:39:32 +00: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
|
|
|
|
});
|
|
|
|
}};
|
|
|
|
});
|