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 <oparoz@users.noreply.github.com>2015-07-10 18:19:40 +0300
committerOlivier Paroz <oparoz@users.noreply.github.com>2015-07-10 18:19:40 +0300
commit0a93516c2056c90359616d0fd23b1f34decdd028 (patch)
treef4bb8f7bbb0df3a44793429b1df05d2b9ca2d174 /js/galleryview.js
parent4eb7a51241a73578653dbbd5d7ad62e3ae1a074a (diff)
parent6543019502077115353520c6709578619613e64b (diff)
Merge pull request #207 from owncloud/support-back-button
Slideshow cleanup
Diffstat (limited to 'js/galleryview.js')
-rw-r--r--js/galleryview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/galleryview.js b/js/galleryview.js
index ca6f9d42..a2b2d5ad 100644
--- a/js/galleryview.js
+++ b/js/galleryview.js
@@ -1,6 +1,6 @@
-/* global OC, t, $, _, Gallery */
-(function () {
-
+/* global Gallery */
+(function (OC, t, $, _) {
+ "use strict";
/**
* Builds and updates the Gallery view
*
@@ -272,4 +272,4 @@
};
Gallery.View = View;
-})();
+})(OC, t, jQuery, _);