File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/connections/sources/catalog/libraries/website/javascript Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,19 @@ The `storage` property accepts an array of supported storage names (`localStorag
164
164
``` js
165
165
analytics .load (' writeKey' , {
166
166
// Global Storage Priority: Both User and Group data
167
- storage: [' cookie' , ' localStorage' , ' memory' ]
167
+ storage: {
168
+ stores: [' cookie' , ' localStorage' , ' memory' ]
169
+ },
168
170
// Specific Storage Priority
169
171
user: {
170
- storage: [' cookie' , ' localStorage' , ' memory' ]
172
+ storage: {
173
+ stores: [' cookie' , ' localStorage' , ' memory' ]
174
+ }
171
175
},
172
176
group: {
173
- storage: [' cookie' , ' localStorage' , ' memory' ]
177
+ storage: {
178
+ stores: [' cookie' , ' localStorage' , ' memory' ]
179
+ }
174
180
},
175
181
}
176
182
` ` `
You can’t perform that action at this time.
0 commit comments