diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-03-06 05:05:40 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-03-06 05:05:40 -0800 |
commit | a2aebbd742a56c2b63e0986bb5530223f40a52e3 (patch) | |
tree | 90cf1cf0d5292e7c89e6e5909f826219c7bdfdda | |
parent | 3213331f731441643ca9671f45d3c5d466a3f997 (diff) | |
parent | a83a5aa90051b21df970a456aa35611cbd7a8add (diff) | |
download | nextcloud-server-a2aebbd742a56c2b63e0986bb5530223f40a52e3.tar.gz nextcloud-server-a2aebbd742a56c2b63e0986bb5530223f40a52e3.zip |
Merge pull request #2130 from owncloud/fix_2128
fix #2128
-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()); |