Merge pull request #2130 from owncloud/fix_2128

fix #2128
This commit is contained in:
Thomas Müller 2013-03-06 05:05:40 -08:00
commit a2aebbd742
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ OC.Notification={
},
show: function(text) {
if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){
$('#notification').html(html);
$('#notification').html(text);
$('#notification').fadeIn().css("display","inline");
}else{
OC.Notification.queuedNotifications.push($(text).html());