space, → | next slide |
← | previous slide |
d | debug mode |
## <ret> | go to slide # |
c | table of contents (vi) |
f | toggle footer |
r | reload slides |
z | toggle help (this) |
loadTroll();
var store = window.localStorage;
store.setItem("hello", JSON.stringify({
name : "toto",
age : 25
}));
// ...
var hello = JSON.parse(store.getItem("hello"));
window.location = "http://mobile.site.com";
console.log
try {
// ...
} catch(err) {
console.log(
'Error at line ' +
error.line +
" in " +
error.sourceURL +
' : ' +
error.message
);
}