Skip to content

Instantly share code, notes, and snippets.

@devmessias
Last active June 2, 2017 17:53
Show Gist options
  • Save devmessias/b03de0ae67b9ff3c878a98b4ffdcb478 to your computer and use it in GitHub Desktop.
Save devmessias/b03de0ae67b9ff3c878a98b4ffdcb478 to your computer and use it in GitHub Desktop.
Rember last slide of reveal.js
var stateReveal = JSON.parse(window.localStorage.getItem("state"));
if (stateReveal != null){
Reveal.navigateTo(stateReveal.indexh, stateReveal.indexv)
}
window.onbeforeunload = function(e){
window.localStorage.setItem("state", JSON.stringify(Reveal.getState()))
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment