kitzo 1.1.6 → 1.1.7
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 +1 -1
- package/dist/kitzo.esm.js +0 -1
- package/dist/kitzo.umd.js +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ npm i kitzo
|
|
|
21
21
|
or
|
|
22
22
|
|
|
23
23
|
```javascript
|
|
24
|
-
<script src="https://cdn.jsdelivr.net/npm/kitzo@1.1.
|
|
24
|
+
<script src="https://cdn.jsdelivr.net/npm/kitzo@1.1.7/dist/kitzo.umd.min.js"></script>
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
> Attach this script tag in the html head tag and you are good to go.
|
package/dist/kitzo.esm.js
CHANGED
|
@@ -215,7 +215,6 @@ function ripple(element, config = {}) {
|
|
|
215
215
|
btn.setAttribute('data-kitzo-ripple', true);
|
|
216
216
|
rippleConfigMap.set(btn, config);
|
|
217
217
|
const { position, overflow } = window.getComputedStyle(btn);
|
|
218
|
-
console.log(position, overflow);
|
|
219
218
|
if (position === 'static') {
|
|
220
219
|
btn.style.position = 'relative';
|
|
221
220
|
}
|
package/dist/kitzo.umd.js
CHANGED
|
@@ -221,7 +221,6 @@
|
|
|
221
221
|
btn.setAttribute('data-kitzo-ripple', true);
|
|
222
222
|
rippleConfigMap.set(btn, config);
|
|
223
223
|
const { position, overflow } = window.getComputedStyle(btn);
|
|
224
|
-
console.log(position, overflow);
|
|
225
224
|
if (position === 'static') {
|
|
226
225
|
btn.style.position = 'relative';
|
|
227
226
|
}
|