https://github.com/strugee/bespoke-controls
PowerPoint/LibreOffice Impress style presentation controls for Bespoke.js
https://github.com/strugee/bespoke-controls
Last synced: over 1 year ago
JSON representation
PowerPoint/LibreOffice Impress style presentation controls for Bespoke.js
- Host: GitHub
- URL: https://github.com/strugee/bespoke-controls
- Owner: strugee
- License: lgpl-3.0
- Created: 2014-10-24T06:17:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-26T01:31:05.000Z (over 11 years ago)
- Last Synced: 2025-03-18T05:19:05.660Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/strugee/bespoke-controls) [](https://coveralls.io/r/strugee/bespoke-controls)
# bespoke-controls
Buttons for controlling slides
## Download
Download the [production version][min] or the [development version][max], or use a [package manager](#package-managers).
[min]: https://raw.github.com/strugee/bespoke-controls/master/dist/bespoke-controls.min.js
[max]: https://raw.github.com/strugee/bespoke-controls/master/dist/bespoke-controls.js
## Usage
This plugin is shipped in a [UMD format](https://github.com/umdjs/umd), meaning that it is available as a CommonJS/AMD module or browser global.
For example, when using CommonJS modules:
```js
var bespoke = require('bespoke'),
controls = require('bespoke-controls');
bespoke.from('#presentation', [
controls()
]);
```
When using browser globals:
```js
bespoke.from('#presentation', [
bespoke.plugins.controls()
]);
```
## Package managers
### npm
```bash
$ npm install bespoke-controls
```
### Bower
```bash
$ bower install bespoke-controls
```
## Credits
This plugin was built with [generator-bespokeplugin](https://github.com/markdalgleish/generator-bespokeplugin).
## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)