We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9926451 commit 82743ffCopy full SHA for 82743ff
2 files changed
en/event.md
@@ -69,12 +69,12 @@ Plugins.catalogize(pEventPlugin);
69
In the handler code, you can then trigger events as follows:
70
71
```javascript
72
- const eventName = EventNames.MyNewEvent; //nebo: 'MyNewEvent'
+ const eventName = EventNames.MyNewEvent; //or: 'MyNewEvent'
73
74
sendEvent(eventName, (r) => {
75
r.id = aliasName;
76
r.result = loadedCount;
77
- //vyplnění dalších potřebných dat
+ //fill another data of event
78
});
79
```
80
en/uibutton.md
@@ -22,7 +22,7 @@ The component defines a standard HTML button that is modified by the CSS class *
22
}
23
24
_buttonAction(evt) {
25
- alert('Ahoj.');
+ alert('Ahoy.');
26
27
28
0 commit comments