-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…200 issue closing during animation.
- Loading branch information
Arinas
committed
Oct 29, 2020
1 parent
16f5f2b
commit 473b7eb
Showing
17 changed files
with
482 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "simplelightbox", | ||
"version": "2.5.0", | ||
"version": "2.6.0", | ||
"homepage": "https://simplelightbox.com/", | ||
"authors": [ | ||
"André Rinas <[email protected]> (https://www.andrerinas.de)" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport" /> | ||
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,700" rel="stylesheet"> | ||
<link rel="stylesheet" href="../dist/simple-lightbox.css?v2.5.0" /> | ||
<link rel="stylesheet" href="../dist/simple-lightbox.css?v2.6.0" /> | ||
<link rel="stylesheet" href="demo.css" /> | ||
<title>SimpleLightbox by André Rinas</title> | ||
</head> | ||
|
@@ -14,7 +14,7 @@ | |
<div class="header-container"> | ||
<div class="container demo-container"> | ||
<div class="info"> | ||
<h1>SimpleLightbox <sup>v2.5.0</sup></h1> | ||
<h1>SimpleLightbox <sup>v2.6.0</sup></h1> | ||
<span class="subline">Touch-friendly image lightbox</span> | ||
<nav> | ||
<a class="btn donate" target="_blank" href="https://www.paypal.me/anrinas">Donate</a> | ||
|
@@ -395,6 +395,18 @@ <h2>JavaScript Options</h2> | |
<td>int</td> | ||
<td>the duration for fading in and out in milliseconds. Used for caption fadein/out too. If smaller than 100 it should be used with animationSlide:false</td> | ||
</tr> | ||
<tr> | ||
<td>uniqueImages</td> | ||
<td>true</td> | ||
<td>bool</td> | ||
<td>whether to uniqualize images or not</td> | ||
</tr> | ||
<tr> | ||
<td>focus</td> | ||
<td>true</td> | ||
<td>bool</td> | ||
<td>focus the lightbox on open to enable tab control</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
|
@@ -609,6 +621,7 @@ <h2>Customization</h2> | |
<h2>Changelog</h2> | ||
</div> | ||
<div class="col-right"> | ||
<strong>2.6.0</strong> - Added new option uniqueImages for #156, focus for #190 and fixed bug #200 issue closing during animation.<br /> | ||
<strong>2.5.0</strong> - Added new option fadeSpeed. This will fix #147.<br /> | ||
<strong>2.4.1</strong> - Added new simple-lightbox.legacy.js with IE 11 Support<br /> | ||
<strong>2.4.0</strong> - Added new option for fixed elements class #195<br /> | ||
|
@@ -710,12 +723,8 @@ <h2>Author/<br />Contributors</h2> | |
Images from <a href="https://unsplash.com/" target="_blank">Unsplash</a> · Thanks to <a target="_blank" href="http://prismjs.com/">PrismJS</a> for syntax highlighting. | ||
</div> | ||
</footer> | ||
<script | ||
src="https://code.jquery.com/jquery-3.4.1.min.js" | ||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" | ||
crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/michalsnik/[email protected]/dist/aos.js"></script> | ||
<script src="../dist/simple-lightbox.min.js?v2.5.0"></script> | ||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> | ||
<script src="../dist/simple-lightbox.js?v2.6.0"></script> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.