mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-08-06 13:38:49 +08:00
docs: fix arguments (#5044)
Change string booleans (i.e. 'true') into boolean booleans (i.e. true).
This commit is contained in:
parent
0f41e389b3
commit
d8f3404d3f
@ -111,7 +111,7 @@ Default: `false`
|
||||
|
||||
```js
|
||||
Youtube.configure({
|
||||
ccLoadPolicy: 'true',
|
||||
ccLoadPolicy: true,
|
||||
})
|
||||
```
|
||||
|
||||
@ -122,7 +122,7 @@ Default: `false`
|
||||
|
||||
```js
|
||||
Youtube.configure({
|
||||
disableKBcontrols: 'true',
|
||||
disableKBcontrols: true,
|
||||
})
|
||||
```
|
||||
|
||||
@ -133,7 +133,7 @@ Default: `false`
|
||||
|
||||
```js
|
||||
Youtube.configure({
|
||||
enableIFrameApi: 'true',
|
||||
enableIFrameApi: true,
|
||||
})
|
||||
```
|
||||
|
||||
@ -189,7 +189,7 @@ Default: `false`
|
||||
|
||||
```js
|
||||
Youtube.configure({
|
||||
loop: 'true',
|
||||
loop: true,
|
||||
})
|
||||
```
|
||||
|
||||
@ -211,7 +211,7 @@ Default: `false`
|
||||
|
||||
```js
|
||||
Youtube.configure({
|
||||
modestBranding: 'true',
|
||||
modestBranding: true,
|
||||
})
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user