@bebranded/bb-contents 1.0.14-beta → 1.0.16-beta
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/bb-contents.js +3 -3
- package/package.json +1 -1
package/bb-contents.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* BeBranded Contents
|
|
3
3
|
* Contenus additionnels français pour Webflow
|
|
4
|
-
* @version 1.0.
|
|
4
|
+
* @version 1.0.16-beta
|
|
5
5
|
* @author BeBranded
|
|
6
6
|
* @license MIT
|
|
7
7
|
* @website https://www.bebranded.xyz
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
// Configuration
|
|
19
19
|
const config = {
|
|
20
|
-
version: '1.0.
|
|
20
|
+
version: '1.0.16-beta',
|
|
21
21
|
debug: window.location.hostname === 'localhost' || window.location.hostname.includes('webflow.io'),
|
|
22
22
|
prefix: 'bb-', // utilisé pour générer les sélecteurs (data-bb-*)
|
|
23
23
|
i18n: {
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
if (element.bbProcessed) return;
|
|
321
321
|
element.bbProcessed = true;
|
|
322
322
|
|
|
323
|
-
const speed = bbContents._getAttr(element, 'bb-marquee-speed') || '
|
|
323
|
+
const speed = bbContents._getAttr(element, 'bb-marquee-speed') || '15';
|
|
324
324
|
const direction = bbContents._getAttr(element, 'bb-marquee-direction') || 'left';
|
|
325
325
|
const pause = bbContents._getAttr(element, 'bb-marquee-pause') || 'true';
|
|
326
326
|
const gap = bbContents._getAttr(element, 'bb-marquee-gap') || '50';
|