Added docs as asciidoctor with cross platform support.

This commit is contained in:
SamTV12345 2023-06-20 23:11:43 +02:00
parent 1c23a40aea
commit 4ca30166b8
No known key found for this signature in database
GPG key ID: E63EEC7466038043
29 changed files with 1401 additions and 860 deletions

View file

@ -1,28 +0,0 @@
# Editbar
src/static/js/pad_editbar.js
## isEnabled()
## disable()
## toggleDropDown(dropdown)
Shows the dropdown `div.popup` whose `id` equals `dropdown`.
## registerCommand(cmd, callback)
Register a handler for a specific command. Commands are fired if the corresponding button is clicked or the corresponding select is changed.
## registerAceCommand(cmd, callback)
Creates an ace callstack and calls the callback with an ace instance (and a toolbar item, if applicable): `callback(cmd, ace, item)`.
Example:
```
toolbar.registerAceCommand("insertorderedlist", function (cmd, ace) {
ace.ace_doInsertOrderedList();
});
```
## registerDropdownCommand(cmd, dropdown)
Ties a `div.popup` where `id` equals `dropdown` to a `command` fired by clicking a button.
## triggerCommand(cmd[, item])
Triggers a command (optionally with some internal representation of the toolbar item that triggered it).