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

bookingsync-calendar-widget

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bookingsync-calendar-widget - npm Package Compare versions

Comparing version

to
0.2.4

4

CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
## [0.2.4] - 2017-08-14
### Fixed
- handling adding js-script with async attribute
## [0.2.3] - 2017-08-14

@@ -5,0 +9,0 @@ ### Fixed

2

package.json
{
"name": "bookingsync-calendar-widget",
"version": "0.2.3",
"version": "0.2.4",
"description": "BookingSync Calendar Widget",

@@ -5,0 +5,0 @@ "main": "dist/bookingsync-calendar-widget.js",

@@ -31,8 +31,13 @@ /* global document, module, VERSION, require */

document.addEventListener('DOMContentLoaded', () => {
if (CalendarConst.autoInit !== false) {
if (CalendarConst.autoInit !== false) {
if (document.readyState !== 'loading') {
CalendarConst.init();
} else {
document.addEventListener('DOMContentLoaded', () => {
CalendarConst.init();
});
}
});
}
module.exports = CalendarConst;

Sorry, the diff of this file is too big to display