diff options
author | Georg Ehrke <developer@georgehrke.com> | 2013-03-02 19:24:37 +0100 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2013-03-02 19:24:37 +0100 |
commit | 620ddd3baacbfab759bff90c9443a2353fe529f4 (patch) | |
tree | fffe7bd138934cd4875badaa33da044ae7e3814b /core/js/js.js | |
parent | 22424e8abcd89f6f08a1f1104677fdc6f6cc9f15 (diff) | |
download | nextcloud-server-620ddd3baacbfab759bff90c9443a2353fe529f4.tar.gz nextcloud-server-620ddd3baacbfab759bff90c9443a2353fe529f4.zip |
new Array() -> []
Diffstat (limited to 'core/js/js.js')
-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 faae420ef7f..1801062241d 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -317,7 +317,7 @@ OC.addStyle.loaded=[]; OC.addScript.loaded=[]; OC.Notification={ - queuedNotifications: new Array(), + queuedNotifications: [], getDefaultNotificationFunction: null, setDefault: function(callback) { OC.Notification.getDefaultNotificationFunction = callback; |