Add missing commas in menu docs
This commit is contained in:
parent
cf79f439ce
commit
bd1fd9680f
1 changed files with 9 additions and 9 deletions
|
@ -281,10 +281,10 @@ Template:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
[
|
[
|
||||||
{label: '4', id: '4'}
|
{label: '4', id: '4'},
|
||||||
{label: '5', id: '5'}
|
{label: '5', id: '5'},
|
||||||
{label: '1', id: '1', position: 'before=4'}
|
{label: '1', id: '1', position: 'before=4'},
|
||||||
{label: '2', id: '2'}
|
{label: '2', id: '2'},
|
||||||
{label: '3', id: '3'}
|
{label: '3', id: '3'}
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
@ -303,11 +303,11 @@ Template:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
[
|
[
|
||||||
{label: 'a', position: 'endof=letters'}
|
{label: 'a', position: 'endof=letters'},
|
||||||
{label: '1', position: 'endof=numbers'}
|
{label: '1', position: 'endof=numbers'},
|
||||||
{label: 'b', position: 'endof=letters'}
|
{label: 'b', position: 'endof=letters'},
|
||||||
{label: '2', position: 'endof=numbers'}
|
{label: '2', position: 'endof=numbers'},
|
||||||
{label: 'c', position: 'endof=letters'}
|
{label: 'c', position: 'endof=letters'},
|
||||||
{label: '3', position: 'endof=numbers'}
|
{label: '3', position: 'endof=numbers'}
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue