Skip to content

Commit 1497484

Browse files
committed
Merge branch 'hotfix/17.5.1'
2 parents 955473a + 284fb92 commit 1497484

File tree

4 files changed

+348
-320
lines changed

4 files changed

+348
-320
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Version 17
44

5+
#### 17.5.1
6+
7+
- Updated Typescript typings
8+
59
#### 17.5.0
610

711
- Added the ability to restore DOM to its original state throught the `restoreAll()` method.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Please note that the video poster can be lazily loaded too.
153153

154154
## 👩‍💻 Getting started - Script
155155

156-
The latest, recommended version of LazyLoad is **17.5.0**.
156+
The latest, recommended version of LazyLoad is **17.5.1**.
157157

158158
Quickly understand how to upgrade from a previous version reading the [practical upgrade guide](UPGRADE.md).
159159

@@ -162,7 +162,7 @@ Quickly understand how to upgrade from a previous version reading the [practical
162162
The easiest way to use LazyLoad is to include the script from a CDN:
163163

164164
```html
165-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js"></script>
165+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js"></script>
166166
```
167167

168168
Then, in your javascript code:
@@ -203,7 +203,7 @@ Then include the script.
203203
```html
204204
<script
205205
async
206-
src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js"
206+
src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js"
207207
></script>
208208
```
209209

@@ -237,7 +237,7 @@ Then include the script.
237237
```html
238238
<script
239239
async
240-
src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lazyload.min.js"
240+
src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lazyload.min.js"
241241
></script>
242242
```
243243

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vanilla-lazyload",
3-
"version": "17.5.0",
3+
"version": "17.5.1",
44
"description": "LazyLoad is a lightweight (2.4 kB) and flexible script that speeds up your web application by deferring the loading of your below-the-fold images, videos and iframes to when they will enter the viewport. It's written in plain \"vanilla\" JavaScript, it leverages the IntersectionObserver API, it supports responsive images, it optimizes your website for slower connections, and can enable native lazy loading.",
55
"main": "dist/lazyload.min.js",
66
"module": "dist/lazyload.esm.js",

0 commit comments

Comments
 (0)