Merge branch 'patch-1' of https://github.com/jhofker/reveal.js into dev

This commit is contained in:
Hakim El Hattab 2015-03-02 12:10:26 +01:00
commit fc568b5524
1 changed files with 4 additions and 1 deletions

View File

@ -4054,7 +4054,10 @@
// If, after clicking a link or similar and we're coming back,
// focus the document.body to ensure we can use keyboard shortcuts
if( isHidden === false && document.activeElement !== document.body ) {
document.activeElement.blur();
// Not all elements support .blur() - SVGs among them.
if (typeof document.activeElement.blur === 'function') {
document.activeElement.blur();
}
document.body.focus();
}