We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 865a15c commit 43a6b7fCopy full SHA for 43a6b7f
docs/_guide/actions.md
@@ -68,7 +68,9 @@ class HelloWorldElement extends HTMLElement {
68
The actions syntax follows a pattern of `event:controller#method`.
69
70
- `event` must be the name of a [_DOM Event_](https://developer.mozilla.org/en-US/docs/Web/Events), e.g. `click`.
71
+ - `:` is the required delimiter between the `event` and `controller`.
72
- `controller` must be the name of a controller ascendant to the element.
73
+ - `#` is the required delimieter between the `controller` and `method`.
74
- `method` (optional) must be a _public_ _method_ attached to a controller's prototype. Static methods will not work.
75
76
If method is not supplied, it will default to `handleEvent`.
0 commit comments