diff options
author | Hakim El Hattab | 2017-06-13 09:43:05 +0200 |
---|---|---|
committer | Hakim El Hattab | 2017-06-13 09:43:05 +0200 |
commit | 123309222390608d6736cec8ce500ace501dfa99 (patch) | |
tree | c8b0b659502b654ee5c69f2ae134e8ce5c8795e7 /js/reveal.js | |
parent | 9342d19b5adcd3eea1f2f16ba74ec2f83928efc5 (diff) |
prevent mobile safari header from covering presentation content
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index 186a999..17d1323 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -530,6 +530,13 @@ dom.wrapper.classList.remove( 'no-hover' ); } + if( /iphone/gi.test( UA ) ) { + dom.wrapper.classList.add( 'ua-iphone' ); + } + else { + dom.wrapper.classList.remove( 'ua-iphone' ); + } + // Background element dom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null ); |