Skip to content

Commit

Permalink
v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
renehamburger committed Sep 26, 2023
1 parent 314b726 commit 997406c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For now, the script can be included directly from GitHub via the jsdelivr CDN, e

```html
<script
src="https://cdn.jsdelivr.net/gh/renehamburger/blinx.js@v0.5.2/dist/blinx.js"
src="https://cdn.jsdelivr.net/gh/renehamburger/blinx.js@v0.5.3/dist/blinx.js"
defer
data-blinx="{
language: 'de'
Expand All @@ -45,7 +45,7 @@ blinx.js loads several resources it requires dynamically and asynchronously. To
defer
></script>
<script
src="https://cdn.jsdelivr.net/gh/renehamburger/blinx.js@v0.5.2/dist/blinx.js"
src="https://cdn.jsdelivr.net/gh/renehamburger/blinx.js@v0.5.3/dist/blinx.js"
defer
></script>
```
Expand All @@ -57,7 +57,7 @@ The string entered for the `<LANGUAGE_CODE>`, e.g. 'de', will then also determin
```js
var blinxScript = document.createElement('script');
blinxScript.type = 'text/javascript';
blinxScript.src = 'https://cdn.jsdelivr.net/gh/renehamburger/blinx.js@v0.5.2/dist/blinx.js';
blinxScript.src = 'https://cdn.jsdelivr.net/gh/renehamburger/blinx.js@v0.5.3/dist/blinx.js';
document.documentElement.appendChild(blinxScript);
blinxScript.setAttribute('data-blinx', '{ language: "de" }');
```
Expand Down
2 changes: 1 addition & 1 deletion dist/blinx.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/blinx.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blinx.js",
"version": "0.5.2",
"version": "0.5.3",
"description": "A multi-language client-side library to automatically convert Bible references to Bible links with passage pop-ups",
"main": "dist/blinx.js",
"scripts": {
Expand Down

0 comments on commit 997406c

Please sign in to comment.