@dotdev/limelight
Advanced tools
Comparing version 2.1.24 to 2.1.25
@@ -0,1 +1,6 @@ | ||
## [2.1.25](https://github.com/ButsAndCats/limelight/compare/2.1.24...2.1.25) (2018-10-15) | ||
## [2.1.24](https://github.com/ButsAndCats/limelight/compare/2.1.23...2.1.24) (2018-10-12) | ||
@@ -2,0 +7,0 @@ |
@@ -24,3 +24,3 @@ | ||
const destination = 'dist/' | ||
const source = 'limelight.js' | ||
const source = 'lib/limelight.js' | ||
@@ -27,0 +27,0 @@ let type = 'patch' |
@@ -13,3 +13,3 @@ "use strict"; | ||
Limelight | ||
version v2.1.19 | ||
version v2.1.20 | ||
Author: George Butter | ||
@@ -201,2 +201,10 @@ https://github.com/ButsAndCats/limelight | ||
} | ||
} // If the element is intialized visible then create an event listener for closing | ||
if (this.closeElements && this.settings.visible) { | ||
// When someone clicks the [data-close] button then we should close the modal | ||
for (var elem = 0; elem < this.closeElements.length; elem += 1) { | ||
this.closeElements[elem].addEventListener('click', Limelight.closeEvent.bind(this)); | ||
} | ||
} | ||
@@ -203,0 +211,0 @@ }; |
/* ===================================================================================== @preserve = | ||
Limelight | ||
version v2.1.20 | ||
version v2.1.21 | ||
Author: George Butter | ||
@@ -178,2 +178,9 @@ https://github.com/ButsAndCats/limelight | ||
} | ||
// If the element is intialized visible then create an event listener for closing | ||
if (this.closeElements && this.settings.visible) { | ||
// When someone clicks the [data-close] button then we should close the modal | ||
for (var elem = 0; elem < this.closeElements.length; elem += 1) { | ||
this.closeElements[elem].addEventListener('click', Limelight.closeEvent.bind(this)) | ||
} | ||
} | ||
} | ||
@@ -180,0 +187,0 @@ |
@@ -56,3 +56,3 @@ { | ||
}, | ||
"version": "2.1.24" | ||
"version": "2.1.25" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35653
755