Allow `data-background` images to load even if there is whitespace at the end.

Fixes #2032.
This commit is contained in:
Benjamin Tan 2018-01-22 17:17:08 +08:00
parent 0c946ae18b
commit 6816a0205e
1 changed files with 1 additions and 1 deletions

View File

@ -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 {