Skip to content

Commit

Permalink
fix syntax error in README example (#981)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwtuku committed Feb 13, 2022
1 parent 279bc63 commit 80d623f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -895,8 +895,8 @@ tagify
```javascript
var tagify = new Tagify(inputNode, {
callbacks: {
"change": (e) => console.log(e.detail))
"dropdown:show": (e) => console.log(e.detail))
"change": (e) => console.log(e.detail),
"dropdown:show": (e) => console.log(e.detail)
}
})
```
Expand Down

0 comments on commit 80d623f

Please sign in to comment.