Browse Source

Refactor binary numbers to boolean to fix TypeScript type error (#6065)

Co-authored-by: Artur Arseniev <artur.catch@hotmail.it>
pull/6068/head
Navid Salehi 2 years ago
committed by GitHub
parent
commit
075f9b5e49
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      docs/getting-started.md

8
docs/getting-started.md

@ -295,10 +295,10 @@ const editor = grapesjs.init({
resizable: {
maxDim: 350,
minDim: 200,
tc: 0, // Top handler
cl: 1, // Left handler
cr: 0, // Right handler
bc: 0, // Bottom handler
tc: false, // Top handler
cl: true, // Left handler
cr: false, // Right handler
bc: false, // Bottom handler
// Being a flex child we need to change `flex-basis` property
// instead of the `width` (default)
keyWidth: 'flex-basis',

Loading…
Cancel
Save