summaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2013-03-02 19:24:37 +0100
committerGeorg Ehrke <developer@georgehrke.com>2013-03-02 19:24:37 +0100
commit620ddd3baacbfab759bff90c9443a2353fe529f4 (patch)
treefffe7bd138934cd4875badaa33da044ae7e3814b /core/js/js.js
parent22424e8abcd89f6f08a1f1104677fdc6f6cc9f15 (diff)
downloadnextcloud-server-620ddd3baacbfab759bff90c9443a2353fe529f4.tar.gz
nextcloud-server-620ddd3baacbfab759bff90c9443a2353fe529f4.zip
new Array() -> []
Diffstat (limited to 'core/js/js.js')
-rw-r--r--core/js/js.js2
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;