diff options
author | Hakim El Hattab | 2013-06-18 20:21:48 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-06-18 20:22:08 -0400 |
commit | 922b0037cd343f18424531b7d71765feaeaf84c0 (patch) | |
tree | 04de56c7613772fc2e0ecb582a113ac38a8170c3 /js/reveal.js | |
parent | ed81faa46791800bac9357cf94f35b82db236237 (diff) |
adjust background image url detection #453
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 70c782c..e240a76 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -283,7 +283,7 @@ var Reveal = (function(){ if( data.background ) { // Auto-wrap image urls in url(...) - if( /\.(png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) { + if( /^(http|file|\/\/)/gi.test( data.background ) ) { element.style.backgroundImage = 'url('+ data.background +')'; } else { |