Very Small updated after using the Custom Views (#748)

This commit is contained in:
Zack Barett
2020-12-08 04:55:04 -06:00
committed by GitHub
parent c25ce0aa07
commit 8f53231d25

View File

@@ -93,5 +93,5 @@ To call an event, you can use:
```js
// Delete 4th card in the current view
this.dispatchEvent(new Event("ll-edit-card", { detail: { path: [3] } })) // this refers to the card element
this.dispatchEvent(new CustomEvent("ll-edit-card", { detail: { path: [3] } })) // this refers to the card element
```