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

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-07-10 20:47:36 +0300
committerOlivier Paroz <github@oparoz.com>2015-07-10 20:47:36 +0300
commit6d05c6e743e8fcca691ffe20d1784293ae36cffa (patch)
treef64719fe8dd1935caac89c74284d3f1af6a4a06b /js/galleryview.js
parent1ff032a143551a8e3c21cd8512aa420c31c0b0dc (diff)
More JS harmonisation
Diffstat (limited to 'js/galleryview.js')
-rw-r--r--js/galleryview.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/galleryview.js b/js/galleryview.js
index eb616fc0..75b35b6c 100644
--- a/js/galleryview.js
+++ b/js/galleryview.js
@@ -1,5 +1,5 @@
/* global Gallery */
-(function (OC, t, $, _) {
+(function ($, _, OC, t, Gallery) {
"use strict";
/**
* Builds and updates the Gallery view
@@ -280,4 +280,4 @@
};
Gallery.View = View;
-})(OC, t, jQuery, _);
+})(jQuery, _, OC, t, Gallery);