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-09-21 20:41:26 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-21 20:41:26 +0300
commit4da30c0367b443c418b81e298252e8a744b5a49c (patch)
tree24307a9754a2ca7d68c3f5dc0cca44ab453524e2 /js/galleryview.js
parentaae0e0bc580ce27b69f6254a0cfcea809bd0545e (diff)
Revert https://github.com/owncloud/gallery/commit/3618021c137310647c8200e23e6ad56899db2062
Diffstat (limited to 'js/galleryview.js')
-rw-r--r--js/galleryview.js22
1 files changed, 2 insertions, 20 deletions
diff --git a/js/galleryview.js b/js/galleryview.js
index 07e3120f..499808ef 100644
--- a/js/galleryview.js
+++ b/js/galleryview.js
@@ -253,15 +253,14 @@
infoButton.find('span').hide();
var infoContentContainer = $('.album-info-container');
infoContentContainer.slideUp();
- infoContentContainer.css('max-height',
- $(window).height() - Gallery.browserToolbarHeight);
+ infoContentContainer.css('max-height', $(window).height() - Gallery.browserToolbarHeight);
var albumInfo = Gallery.config.albumInfo;
if (Gallery.config.albumError) {
infoButton.hide();
var text = '<strong>' + t('gallery', 'Configuration error') + '</strong></br>' +
Gallery.config.albumError.message + '</br></br>';
Gallery.utility.showHtmlNotification(text, 7);
- } else if (this._isInfoContentEmpty(albumInfo)) {
+ } else if ($.isEmptyObject(albumInfo)) {
infoButton.hide();
} else {
infoButton.show();
@@ -272,23 +271,6 @@
},
/**
- * Determines if the info box is empty
- *
- * @param albumInfo
- * @returns {bool}
- * @private
- */
- _isInfoContentEmpty: function (albumInfo) {
- return $.isEmptyObject(albumInfo)
- || (
- !albumInfo.description
- && !albumInfo.descriptionLink
- && !albumInfo.copyright
- && !albumInfo.copyrightLink
- );
- },
-
- /**
* Sets the background colour of the photowall
*
* @private