Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2013-03-02 22:24:37 +0400
committerGeorg Ehrke <developer@georgehrke.com>2013-03-02 22:24:37 +0400
commit620ddd3baacbfab759bff90c9443a2353fe529f4 (patch)
treefffe7bd138934cd4875badaa33da044ae7e3814b /core
parent22424e8abcd89f6f08a1f1104677fdc6f6cc9f15 (diff)
new Array() -> []
Diffstat (limited to 'core')
-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;