@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 +32 -3
- package/jquery.infiniteScrollWithTemplate.js +1 -1
- package/package.json +1 -1
- /package/{LICENSE → LICENSE.md} +0 -0
package/README.md
CHANGED
|
@@ -1,10 +1,37 @@
|
|
|
1
|
-
jQuery Infinite With Template Plugin
|
|
2
|
-
|
|
1
|
+
# jQuery Infinite With Template Plugin
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
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).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cable8mm/jquery-infinite-with-template",
|
|
3
|
-
"version": "1.0.
|
|
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",
|
/package/{LICENSE → LICENSE.md}
RENAMED
|
File without changes
|