Skip to content
This repository has been archived by the owner on Mar 4, 2019. It is now read-only.

Commit

Permalink
Fixed CSS className and demo options code.
Browse files Browse the repository at this point in the history
  • Loading branch information
blueimp committed May 20, 2011
1 parent 94f32ac commit 602547d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions application.js
@@ -1,5 +1,5 @@
/* /*
* jQuery Image Gallery Plugin JS Example 1.1 * jQuery Image Gallery Plugin JS Example 1.1.1
* https://github.com/blueimp/jQuery-Image-Gallery * https://github.com/blueimp/jQuery-Image-Gallery
* *
* Copyright 2011, Sebastian Tschan * Copyright 2011, Sebastian Tschan
Expand Down Expand Up @@ -34,7 +34,7 @@ $(function () {
$('a[rel="gallery"]').imagegallery('destroy'); $('a[rel="gallery"]').imagegallery('destroy');
$('a[rel="gallery"]').imagegallery({ $('a[rel="gallery"]').imagegallery({
fullscreen: $('#option-fullscreen').is(':checked'), fullscreen: $('#option-fullscreen').is(':checked'),
slideshow: $(this).is(':checked') && 5000 slideshow: $('#option-slideshow').is(':checked') && 5000
}); });
}); });


Expand Down
4 changes: 2 additions & 2 deletions jquery.image-gallery.css
@@ -1,6 +1,6 @@
@charset 'UTF-8'; @charset 'UTF-8';
/* /*
* jQuery Image Gallery Plugin CSS 1.1 * jQuery Image Gallery Plugin CSS 1.1.1
* https://github.com/blueimp/jQuery-Image-Gallery * https://github.com/blueimp/jQuery-Image-Gallery
* *
* Copyright 2011, Sebastian Tschan * Copyright 2011, Sebastian Tschan
Expand Down Expand Up @@ -56,7 +56,7 @@
float: left; float: left;
} }


.gallery-fullscreen .ui-widget-overlay { .gallery-body-fullscreen .ui-widget-overlay {
opacity: 1; opacity: 1;
filter: alpha(opacity=100); filter: alpha(opacity=100);
} }

0 comments on commit 602547d

Please sign in to comment.