Code styling

This commit is contained in:
Jarek Rozanski 2025-01-27 22:39:31 +01:00
parent a0d5f16b43
commit 11c1dd4b94

View file

@ -136,7 +136,7 @@ If the visitors browsers has `DoNotTrack` setting enabled in the browser, it wil
You website can't overwrite this behaviour by specifying `suppressDnt` setting. You website can't overwrite this behaviour by specifying `suppressDnt` setting.
``` ```javascript
app.use(WideAngle, { app.use(WideAngle, {
siteId: "8D27G3B9ACA01F4241", siteId: "8D27G3B9ACA01F4241",
suppressDnt: true suppressDnt: true
@ -149,7 +149,7 @@ Wide Angle can be configure to handle presence of a cookie, or a cookie with spe
Example configuration with cookie marker, expecting cookie name `WAA_CONSENT` with value `true`: Example configuration with cookie marker, expecting cookie name `WAA_CONSENT` with value `true`:
``` ```javascript
app.use(WideAngle, { app.use(WideAngle, {
siteId: "8D27G3B9ACA01F4241", siteId: "8D27G3B9ACA01F4241",
consentMarker: "WAA_CONSENT=true" consentMarker: "WAA_CONSENT=true"
@ -169,7 +169,7 @@ Calling above methods on `waa` service will overwrite other consent mechanism (i
Example usage: Example usage:
``` ```vue
<script setup> <script setup>
import { inject } from 'vue' import { inject } from 'vue'
const waa = inject('waa'); const waa = inject('waa');