reverse merge rollback

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10714 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2012-05-17 02:38:33 +00:00
parent e3685a7bd8
commit 3afad81016
44 changed files with 333 additions and 742 deletions

View file

@ -6,19 +6,13 @@ window.xeNotifyMessage = function(text, count){
$bar = $('<div class="message info" />')
.hide()
.prependTo(document.body);
.css({
'position' : 'absolute',
'z-index' : '100',
})
.appendTo(document.body);
}
text = text.replace('%d', count);
h = $bar.html('<p><a href="'+current_url.setQuery('act','dispCommunicationMessages')+'">'+text+'</a></p>').height();
$bar.css('top', -h-4).show().animate({top:0});
$bar.show().animate({top:0});
// hide after 10 seconds
setTimeout(function(){
$bar.slideUp();
}, 5000);
}, 10000);
};
})(jQuery);