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:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-06-29 18:24:30 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-15 17:52:15 +0300
commitd6c5d9ff76c4c5b364408f4566df64934a66f9da (patch)
treefee5ff0ca654779a538b54693cc50d0916ea2c25 /js/gallerybutton.js
parent8804378bbd651586921c47b328383bda322fedcd (diff)
move toggle buttons for sorting and view switching to the right
Diffstat (limited to 'js/gallerybutton.js')
-rw-r--r--js/gallerybutton.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/gallerybutton.js b/js/gallerybutton.js
index ca0d29a5..24d3a40f 100644
--- a/js/gallerybutton.js
+++ b/js/gallerybutton.js
@@ -59,13 +59,13 @@ $(document).ready(function () {
// Toggle for opening files list as gallery view
GalleryButton.button =
- $('<div class="button view-switcher left-switch-button disabled-button">' +
- '<img class="svg" src="' + OC.imagePath('core', 'actions/toggle-filelist.svg') +
+ $('<div id="gallery-button" class="button view-switcher right-switch-button inactive-button">' +
+ '<img class="svg" src="' + OC.imagePath('core', 'actions/toggle-pictures.svg') +
'"' +
'alt="' + t('gallery', 'Picture view') + '"/>' +
'</div>' +
- '<div id="gallery-button" class="button view-switcher right-switch-button inactive-button">' +
- '<img class="svg" src="' + OC.imagePath('core', 'actions/toggle-pictures.svg') +
+ '<div class="button view-switcher left-switch-button disabled-button">' +
+ '<img class="svg" src="' + OC.imagePath('core', 'actions/toggle-filelist.svg') +
'"' +
'alt="' + t('gallery', 'Picture view') + '"/>' +
'</div>');