vite-plugin-blocklet 0.13.1 → 0.13.2
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/dist/index.cjs +1 -1
- package/libs/loading.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -402,7 +402,7 @@ function generateHtml({ color, image, showDots = true, showPoweredBy, poweredByT
|
|
|
402
402
|
: ''
|
|
403
403
|
}
|
|
404
404
|
</div>
|
|
405
|
-
|
|
405
|
+
${showPoweredBy ? `<div id="loadingPoweredBy">${poweredByText}</div>` : ''}
|
|
406
406
|
<script>
|
|
407
407
|
(() => {
|
|
408
408
|
const isDark = document.documentElement.getAttribute('data-theme') === 'dark';
|
package/libs/loading.js
CHANGED
|
@@ -154,7 +154,7 @@ function generateHtml({ color, image, showDots = true, showPoweredBy, poweredByT
|
|
|
154
154
|
: ''
|
|
155
155
|
}
|
|
156
156
|
</div>
|
|
157
|
-
|
|
157
|
+
${showPoweredBy ? `<div id="loadingPoweredBy">${poweredByText}</div>` : ''}
|
|
158
158
|
<script>
|
|
159
159
|
(() => {
|
|
160
160
|
const isDark = document.documentElement.getAttribute('data-theme') === 'dark';
|