[DOC] doc: improve navigation to main doc page

also, fixes a small error
This commit is contained in:
Géry Debongnie
2019-10-10 12:27:32 +02:00
parent 07dac970f7
commit da1824f4dd
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -87,7 +87,11 @@ find some more information [here](doc/comparison.md).
## Documentation ## Documentation
The complete documentation can be found [here](doc/readme.md). The most important sections are: A complete documentation for Owl can be found here:
- [Main documentation page](doc/readme.md).
The most important sections are:
- [Quick Start](doc/quick_start.md) - [Quick Start](doc/quick_start.md)
- [Component](doc/component.md) - [Component](doc/component.md)
+1 -1
View File
@@ -5,7 +5,7 @@ parts of the code. Owl has a very simple bus class, which manages subscriptions,
triggering events, and callbacks. triggering events, and callbacks.
```js ```js
const bus = new owl.EventBus(); const bus = new owl.core.EventBus();
bus.on("some-event", null, function(...args) { bus.on("some-event", null, function(...args) {
console.log(...args); console.log(...args);