File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -162,8 +162,8 @@ isCookieIdVisible: false,
162
162
// If css is set to false, you will still be able to access your color variables.
163
163
isCssEnabled: true ,
164
164
165
- // Switch to toggle the css variables polyfill .
166
- isCssPolyfillEnabled : true ,
165
+ // Switch to toggle the css variables ponyfill .
166
+ isCssPonyfillEnabled : false ,
167
167
168
168
// Switch to toggle the separation of cookie name and description in the configuration modal by a dash.
169
169
isDashInDescriptionEnabled: true ,
Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ onBeforeMount(async () => {
295
295
variables [` cookie-control-${key } ` ] = ` ${moduleOptions .colors [key ]} `
296
296
}
297
297
298
- if (moduleOptions .isCssPolyfillEnabled ) {
298
+ if (moduleOptions .isCssPonyfillEnabled ) {
299
299
const module = await import (' css-vars-ponyfill' )
300
300
const cssVars = module .default
301
301
cssVars ({ variables })
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export interface ModuleOptions {
74
74
isControlButtonEnabled : boolean
75
75
isCookieIdVisible : boolean
76
76
isCssEnabled : boolean
77
- isCssPolyfillEnabled : boolean
77
+ isCssPonyfillEnabled : boolean
78
78
isDashInDescriptionEnabled : boolean
79
79
isIframeBlocked : boolean | { initialState : boolean }
80
80
locales : Locale [ ]
@@ -121,7 +121,7 @@ export const DEFAULTS: Required<ModuleOptions> = {
121
121
isControlButtonEnabled : true ,
122
122
isCookieIdVisible : false ,
123
123
isCssEnabled : true ,
124
- isCssPolyfillEnabled : true ,
124
+ isCssPonyfillEnabled : false ,
125
125
isDashInDescriptionEnabled : true ,
126
126
isIframeBlocked : false ,
127
127
domain : '' ,
You can’t perform that action at this time.
0 commit comments