New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

img-lightbox

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

img-lightbox - npm Package Compare versions

Comparing version

to
0.2.0

4

CHANGELOG.md

@@ -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 @@ }

2

package.json
{
"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 @@ }