17 lines
401 B
JavaScript
17 lines
401 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
|
|
};
|
|
});
|