diff options
author | Georg Ehrke <georg@ownCloud.com> | 2013-03-06 13:02:44 +0100 |
---|---|---|
committer | Georg Ehrke <georg@ownCloud.com> | 2013-03-06 13:02:44 +0100 |
commit | a83a5aa90051b21df970a456aa35611cbd7a8add (patch) | |
tree | 09b83426e48cad8906830fe782608f91997266ba /core | |
parent | 145fb1804256b30a0df46914d0a461ba77b74317 (diff) | |
download | nextcloud-server-a83a5aa90051b21df970a456aa35611cbd7a8add.tar.gz nextcloud-server-a83a5aa90051b21df970a456aa35611cbd7a8add.zip |
fix #2128
Diffstat (limited to 'core')
-rw-r--r-- | core/js/js.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 582d1f808d7..1a94215c27b 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -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()); |