h5ai/src/_h5ai/client/js/inc/view/notification.js
2015-04-29 01:13:30 +02:00

21 lines
442 B
JavaScript

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