cec-nuxt-lib 0.11.3 → 0.11.5
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/module.json
CHANGED
|
@@ -92,11 +92,13 @@ const doSearch = async () => {
|
|
|
92
92
|
}
|
|
93
93
|
};
|
|
94
94
|
onMounted(() => {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
95
|
+
setTimeout(() => {
|
|
96
|
+
try {
|
|
97
|
+
CookieControl.load(config);
|
|
98
|
+
} catch (err) {
|
|
99
|
+
console.log("No cookie control");
|
|
100
|
+
}
|
|
101
|
+
}, 100);
|
|
100
102
|
let accordions = document.getElementsByClassName("access-acc-container");
|
|
101
103
|
if (accordions.length) {
|
|
102
104
|
let hash = window.location.hash;
|
package/package.json
CHANGED