scribe-plugin-toolbar
v1.0.0
Published
A toolbar of buttons and shortcuts for Scribe
Downloads
9,847
Keywords
Readme
scribe-plugin-toolbar
A toolbar of buttons and shortcuts for Scribe
Installation
bower install scribe-plugin-toolbar
Alternatively, you can access the distribution files through GitHub releases.
Usage Example
scribe-plugin-toolbar is an AMD module:
require(['scribe', 'scribe-plugin-toolbar'], function (Scribe, scribePluginToolbar) {
var scribeElement = document.querySelector('.scribe');
// Create an instance of Scribe
var scribe = new Scribe(scribeElement);
var toolbarElement = document.querySelector('.toolbar');
scribe.use(scribePluginToolbar(toolbarElement));
});
For more documentation see the project wiki
Options
Set the shared
key to true to enable the shared toolbar functionality.
Development
After cloning the repo:
npm install
bower install
npm run test
If the tests run green then you are good to start developing