clientnode 3.0.899 → 3.0.900
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/package.json +1 -1
- package/readme.md +13 -10
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -109,12 +109,18 @@ after needed dependencies:
|
|
|
109
109
|
|
|
110
110
|
#!HTML
|
|
111
111
|
|
|
112
|
-
<script
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
112
|
+
<script
|
|
113
|
+
src="https://code.jquery.com/jquery-3.6.0.min.js"
|
|
114
|
+
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
|
|
115
|
+
crossorigin="anonymous"
|
|
116
|
+
></script>
|
|
117
|
+
<!--Inject downloaded file:
|
|
118
|
+
<script src="index.js"></script>
|
|
117
119
|
-->
|
|
120
|
+
<!--Or integrate via cdn:-->
|
|
121
|
+
<script
|
|
122
|
+
src="https://raw.githubusercontent.com/thaibault/clientnode/gh-pages/data/distributionBundle/index.js"
|
|
123
|
+
></script>
|
|
118
124
|
|
|
119
125
|
The compiled bundle supports AMD, commonjs, commonjs2 and variable injection
|
|
120
126
|
into given context (UMD) as export format: You can use a module bundler if you
|
|
@@ -194,9 +200,6 @@ have to provide "$" globally before loading this module.
|
|
|
194
200
|
|
|
195
201
|
#!JavaScript
|
|
196
202
|
|
|
197
|
-
// !/usr/bin/env node
|
|
198
|
-
// -*- coding: utf-8 -*-
|
|
199
|
-
/** @module jQuery-incrementer */
|
|
200
203
|
'use strict'
|
|
201
204
|
import {$} from 'clientnode'
|
|
202
205
|
/**
|
|
@@ -238,8 +241,8 @@ Initialisation with given dom node and without:
|
|
|
238
241
|
Function call from previous generated instance via dom node or instance
|
|
239
242
|
reference:
|
|
240
243
|
<!--deDE:
|
|
241
|
-
Aufruf einer Plugin-
|
|
242
|
-
|
|
244
|
+
Aufruf einer Plugin-Methode anhand der zuvor generierten Instanz bzw. über
|
|
245
|
+
den zurückgegebene DOM-Knoten:
|
|
243
246
|
-->
|
|
244
247
|
|
|
245
248
|
#!JavaScript
|