diff options
author | Hakim El Hattab | 2013-10-11 22:14:50 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-10-11 22:14:50 -0400 |
commit | b455b0281dfe52dd9a01a0687d44895ff45a2d60 (patch) | |
tree | b83ac1001a2f71e29dd08405f17002396b5706f7 /js/reveal.js | |
parent | 942724238fee5f2fe7480df3a7fbf033dcda6ce9 (diff) |
support for svg background images #632
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 9c798f4..21e0006 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -434,7 +434,7 @@ var Reveal = (function(){ if( data.background ) { // Auto-wrap image urls in url(...) - if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) { + if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) { element.style.backgroundImage = 'url('+ data.background +')'; } else { |