Skip to content

Commit 2fd087a

Browse files
committed
hotfixes
1 parent cbbd86e commit 2fd087a

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

assets/css/atcb.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Add-to-Calendar Button
44
* ++++++++++++++++++++++
55
*
6-
* Version: 1.1.3
6+
* Version: 1.1.4
77
* Creator: Jens Kuerschner (https://jenskuerschner.de)
88
* Project: https://github.com/jekuer/add-to-calendar-button
99
* License: GNU General Public License v3.0 (gpl-3.0)

assets/js/atcb.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Add-to-Calendar Button
44
* ++++++++++++++++++++++
55
*/
6-
const atcbVersion = '1.1.3';
6+
const atcbVersion = '1.1.4';
77
/* Creator: Jens Kuerschner (https://jenskuerschner.de)
88
* Project: https://github.com/jekuer/add-to-calendar-button
99
* License: GNU General Public License v3.0 (gpl-3.0)
@@ -498,4 +498,4 @@ document.addEventListener('DOMContentLoaded', atcb_init, false);
498498

499499

500500
// EXPORT FOR USE IN NODEJS
501-
export { atcb_init, atcbVersion };
501+
export { atcb_init };

assets/js/atcb.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/atcb.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<body>
122122
<div class="container">
123123

124-
<h1>Add-to-Calendar Button <span id="tinyVersion"></span></h1>
124+
<h1>Add-to-Calendar Button <span id="tinyVersion">v1.1.4</span></h1>
125125
<h2>A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.</h2>
126126
<p class="github">
127127
<a target="_blank" href="https://github.com/jekuer/add-to-calendar-button">
@@ -440,15 +440,12 @@ <h3>Example 6: Timezone Offset</h3>
440440
This page is hosted via "GitHub Pages". It does not hold any specific cookies and/or tracking. However, the GitHub privacy policy applies (<a target="_blank" href="https://docs.github.com/en/github/site-policy/github-privacy-statement">click here for details</a>).
441441
</div>
442442

443+
</div>
443444

444-
<!-- load the button js -->
445-
<script type="module" src="./assets/js/atcb.min.js"></script>
446445

447-
<!-- just some more stuff for the demo page -->
448-
<script>
449-
document.getElementById('tinyVersion').innerHTML = "(" + atcbVersion + ")";
450-
</script>
446+
<!-- load the button js -->
447+
<script type="module" src="./assets/js/atcb.min.js"></script>
451448

452-
</div>
449+
453450
</body>
454451
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "add-to-calendar-button",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.",
55
"main": "assets/js/atcb.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)