h5ai/src/_h5ai/public/js/lib/view/notification.js
2015-11-18 17:27:16 +01:00

18 lines
403 B
JavaScript

modulejs.define('view/notification', ['$', 'view/root'], function ($, root) {
var $el = $('<div id="notification"/>').hide().appendTo(root.$el);
function set(content) {
if (content) {
$el.stop(true, true).html(content).fadeIn(400);
} else {
$el.stop(true, true).fadeOut(400);
}
}
return {
$el: $el,
set: set
};
});