@cable8mm/jquery-infinite-with-template 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,10 +1,37 @@
1
- jQuery Infinite With Template Plugin
2
- ======================
1
+ # jQuery Infinite With Template Plugin
2
+
3
+ ![NPM Version](https://img.shields.io/npm/v/%40cable8mm%2Fjquery-infinite-with-template)
4
+ ![npm bundle size](https://img.shields.io/bundlephobia/minzip/%40cable8mm%2Fjquery-infinite-with-template)
5
+ ![NPM Downloads](https://img.shields.io/npm/dt/%40cable8mm%2Fjquery-infinite-with-template)
6
+ ![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hy/%40cable8mm%2Fjquery-infinite-with-template)
7
+ ![NPM Type Definitions](https://img.shields.io/npm/types/%40cable8mm%2Fjquery-infinite-with-template)
8
+ ![NPM License](https://img.shields.io/npm/l/%40cable8mm%2Fjquery-infinite-with-template)
9
+
3
10
 
4
11
  JQuery plugin for ajax-enabled infinite page scroll with template.
5
12
 
6
13
  If you like jQuery until now, this little library will help.
7
14
 
15
+ ## Install
16
+
17
+ on npm
18
+
19
+ ```sh
20
+ npm i @cable8mm/jquery-infinite-with-template
21
+ ```
22
+
23
+ on html
24
+
25
+ ```html
26
+ <script src="https://cdn.jsdelivr.net/npm/@cable8mm/jquery-infinite-with-template@1.0.4/jquery.infiniteScrollWithTemplate.min.js" integrity="sha256-bX3iyCp0T50YmDRgpUl1tY/LGlpPGsKR4TqUkpcq6WA=" crossorigin="anonymous"></script>
27
+ ```
28
+
29
+ on ESM
30
+
31
+ ```html
32
+ <script type="module"> import @cable8mm/jquery-infinite-with-template from https://cdn.jsdelivr.net/npm/@cable8mm/jquery-infinite-with-template@1.0.4/+esm </script>
33
+ ```
34
+
8
35
  ## Demo
9
36
 
10
37
  For convinient `http-server` need:
@@ -216,4 +243,6 @@ Result:
216
243
  initialPage: 3,
217
244
  });
218
245
  </script>
219
- ```
246
+ ```
247
+
248
+ The jQuery Infinite With Template Plugin project is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
@@ -3,7 +3,7 @@
3
3
  * JQuery plugin for ajax-enabled infinite page scroll with template.
4
4
  *
5
5
  * Author: Sam Lee (https://github.com/cable8mm)
6
- * Version: 1.0.2
6
+ * Version: 1.0.4
7
7
  */
8
8
 
9
9
  (function ($) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cable8mm/jquery-infinite-with-template",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "title": "jQuery Infinite With Template",
5
5
  "description": "JQuery plugin for ajax-enabled infinite page scroll with template. If you like jQuery until now, this little library will help.",
6
6
  "main": "jquery.infiniteScrollWithTemplate.js",
File without changes