img-lightbox
Advanced tools
Comparing version
@@ -6,2 +6,6 @@ # Changelog | ||
## 0.2.0 - 2018-12-21 | ||
### Changed | ||
- Added touchstart surpress to prevent Wordpress takeover https://github.com/englishextra/iframe-lightbox/issues/17 | ||
## 0.1.9 - 2018-12-20 | ||
@@ -8,0 +12,0 @@ ### Changed |
@@ -135,2 +135,3 @@ /*! | ||
var rate = options.rate || 500; | ||
var touch = options.touch; | ||
var onError = options.onError; | ||
@@ -182,2 +183,5 @@ var onLoaded = options.onLoaded; | ||
e[getAttribute]("href") || e[getAttribute]("data-src") || ""; | ||
var dataTouch = | ||
e[getAttribute]("data-touch") || ""; | ||
@@ -230,3 +234,3 @@ if (!hrefString) { | ||
if (isTouch) { | ||
if (isTouch && (touch || dataTouch)) { | ||
e[_addEventListener]("touchstart", handleImgLightboxLink); | ||
@@ -233,0 +237,0 @@ } |
{ | ||
"name": "img-lightbox", | ||
"version": "0.1.9", | ||
"version": "0.2.0", | ||
"description": "Responsive no-jQuery pure JS/CSS Lightbox for images, no dependencies, 10kb unminified source code, with demo", | ||
@@ -5,0 +5,0 @@ "keywords": ["lightbox", |
@@ -38,11 +38,11 @@ # img-lightbox Demo | ||
`https://cdn.jsdelivr.net/gh/englishextra/img-lightbox@0.1.9/js/img-lightbox.min.js` | ||
`https://cdn.jsdelivr.net/gh/englishextra/img-lightbox@0.2.0/js/img-lightbox.min.js` | ||
`https://cdn.jsdelivr.net/gh/englishextra/img-lightbox@0.1.9/css/img-lightbox.min.css` | ||
`https://cdn.jsdelivr.net/gh/englishextra/img-lightbox@0.2.0/css/img-lightbox.min.css` | ||
#### unpkg | ||
`https://unpkg.com/img-lightbox@0.1.9/js/img-lightbox.js` | ||
`https://unpkg.com/img-lightbox@0.2.0/js/img-lightbox.js` | ||
`https://unpkg.com/img-lightbox@0.1.9/css/img-lightbox.css` | ||
`https://unpkg.com/img-lightbox@0.2.0/css/img-lightbox.css` | ||
@@ -108,3 +108,4 @@ ### Install | ||
}, | ||
rate: 500 /* default: 500 */ | ||
rate: 500 /* default: 500 */, | ||
touch: false /* default: false - use with care for responsive images in links on vertical mobile screens */ | ||
}); | ||
@@ -111,0 +112,0 @@ } |
19298
2.01%456
0.66%120
0.84%