diff options
author | Benjamin Tan | 2018-01-22 17:17:08 +0800 |
---|---|---|
committer | Benjamin Tan | 2018-01-22 17:17:08 +0800 |
commit | 6816a0205e329a2564d0a198cf89285064e3bc24 (patch) | |
tree | 350cb7c00290bb95939ec386761b2f8024cd4c79 | |
parent | 0c946ae18b3773895bae259802108df11fade6d9 (diff) |
Allow `data-background` images to load even if there is whitespace at the end.
Fixes #2032.
-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 e944572..7f12d10 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -916,7 +916,7 @@ if( data.background ) { // Auto-wrap image urls in url(...) - if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp)([?#]|$)/gi.test( data.background ) ) { + if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp)([?#\s]|$)/gi.test( data.background ) ) { slide.setAttribute( 'data-background-image', data.background ); } else { |