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
path: root/js
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-09-09 23:34:02 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-13 03:41:05 +0300
commit1b9bc81a5611ff33a2e9a3726d3d033cd56b20ea (patch)
tree8b2ebb7f82e3f95b7f1d994b6432afe1c75646ed /js
parent21e6469c28a706a92521ea79f29bcba12540fb02 (diff)
Fix public template to get rid of scroller
Diffstat (limited to 'js')
-rw-r--r--js/slideshow.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/slideshow.js b/js/slideshow.js
index 5b809793..19f235b1 100644
--- a/js/slideshow.js
+++ b/js/slideshow.js
@@ -94,7 +94,6 @@
this.active = true;
this.container.show();
this.container.css('background-position', 'center');
- $('html').css('overflow-y', 'hidden');
this._hideImage();
var currentImageId = index;
return this.loadImage(this.images[index]).then(function (img) {
@@ -187,7 +186,6 @@
* Stops the slideshow
*/
stop: function () {
- $('html').css('overflow-y', 'scroll');
this.active = false;
this.images = null;
this._hideImage();