mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-21 00:59:11 +00:00
Rewrite the `callAll` and `aCallAll` functions to support all
reasonable hook behaviors and to report errors for unreasonable
behaviors (e.g., calling the callback twice).
Now a hook function like the following works as expected when invoked
by `aCallAll`:
```
exports.myHookFn = (hookName, context, cb) => {
cb('some value');
return;
};
```
|
||
|---|---|---|
| .. | ||
| api.md | ||
| changeset_library.md | ||
| editbar.md | ||
| editorInfo.md | ||
| embed_parameters.md | ||
| hooks_client-side.md | ||
| hooks_overview.md | ||
| hooks_server-side.md | ||
| http_api.md | ||
| pluginfw.md | ||
| toolbar.md | ||