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-13 21:45:36 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-14 13:31:59 +0300
commit3045c4eb688ad8359ad240c7c2c8f9da5d35f9fa (patch)
treeb0e3d461cce5e57ef32fa7ef2e8776ef2c9edfcd /js/galleryview.js
parentdb937846a2b4c8681ffc609a74f0c31e08b5b3c9 (diff)
Keep the # in the config for the background colour
It makes it easier to understand what it's about
Diffstat (limited to 'js/galleryview.js')
-rw-r--r--js/galleryview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/galleryview.js b/js/galleryview.js
index 37a7a7b6..8872d74b 100644
--- a/js/galleryview.js
+++ b/js/galleryview.js
@@ -302,7 +302,7 @@
var wrapper = $('#content-wrapper');
var albumInfo = Gallery.config.albumInfo;
if (!$.isEmptyObject(albumInfo) && albumInfo.background) {
- wrapper.css('background-color', '#' + albumInfo.background);
+ wrapper.css('background-color', albumInfo.background);
} else {
wrapper.css('background-color', '#fff');
}