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-01-12 16:25:10 +0300
committerOlivier Paroz <github@oparoz.com>2015-01-12 16:25:10 +0300
commit3829edb643a599a8e941c55b577ec66253fa28b8 (patch)
treea65782574ad742757354cceb1a81b59e348df129
parent5e0b43b1d3cc87bdf3f0a0e6ad9f36ba48a94d12 (diff)
Removing leftover JS debugging codev1.0-rc1
-rw-r--r--README.md2
-rw-r--r--js/slideshow.js2
2 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index 86a35e5d..c42f62a8 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Gallery Plus [BETA] [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/interfasys/galleryplus/badges/quality-score.png?b=stable7)](https://scrutinizer-ci.com/g/interfasys/galleryplus/?branch=stable7) [![Code Climate](https://codeclimate.com/github/interfasys/galleryplus/badges/gpa.svg)](https://codeclimate.com/github/interfasys/galleryplus)
+# Gallery Plus [BETA] [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/interfasys/galleryplus/badges/quality-score.png?b=stable7)](https://scrutinizer-ci.com/g/interfasys/galleryplus/?branch=stable7) [![Code Climate](https://codeclimate.com/github/interfasys/galleryplus/badges/gpa.svg)](https://codeclimate.com/github/interfasys/galleryplus) [![Build Status](https://travis-ci.org/interfasys/galleryplus.svg?branch=stable7)](https://travis-ci.org/interfasys/galleryplus)
Media gallery for ownCloud which includes preview for all media types supported by your ownCloud installation.
Provides a dedicated view of all images in a grid, adds image viewing capabilities to the files app and adds a gallery view to public links.
diff --git a/js/slideshow.js b/js/slideshow.js
index b7575785..b711535d 100644
--- a/js/slideshow.js
+++ b/js/slideshow.js
@@ -112,13 +112,11 @@ SlideShow.prototype.keyCodeSetup = function (makeCallBack) {
SlideShow.prototype.zoomOutKey = function (evt) {
// zero, o or down key
- console.log(evt);
return (evt.keyCode === 48 || evt.keyCode === 96 || evt.keyCode === 79 || evt.keyCode === 40);
};
SlideShow.prototype.zoomInKey = function (evt) {
// 9, i or up key
- console.log(evt);
return (evt.keyCode === 57 || evt.keyCode === 105 || evt.keyCode === 73 || evt.keyCode === 38);
};