bespoke-hide
v0.1.1
Published
Hide/Unhide slides from the presentation. Stores your settings in localStorage so it's persisted across reloads
Downloads
4
Readme
bespoke-hide
Hide/Show slides from the presentation. Stores your settings in localStorage so it's persisted across reloads.
Use h
to hide the current slide and u
to show a list of all slides that are hidden (then click the one(s) you want to show).
Download
Download the production version or the development version, or use a package manager.
Usage
This plugin is shipped in a UMD format, meaning that it is available as a CommonJS/AMD module or browser global.
For example, when using CommonJS modules:
var bespoke = require('bespoke'),
hide = require('bespoke-hide');
bespoke.from('#presentation', [
hide()
]);
When using browser globals:
bespoke.from('#presentation', [
bespoke.plugins.hide()
]);
Package managers
npm
$ npm install bespoke-hide
Bower
$ bower install bespoke-hide
Credits
This plugin was built with generator-bespokeplugin.