resolves #1324 allow display property to be configured
- allow display property apply to current slide to be configured
This commit is contained in:
parent
b390e66c27
commit
ccbc7ed6bc
1 changed files with 4 additions and 1 deletions
|
@ -45,6 +45,9 @@
|
||||||
minScale: 0.2,
|
minScale: 0.2,
|
||||||
maxScale: 1.5,
|
maxScale: 1.5,
|
||||||
|
|
||||||
|
// Value of the display CSS property applied to current slide to make it visible
|
||||||
|
display: 'block',
|
||||||
|
|
||||||
// Display controls in the bottom right corner
|
// Display controls in the bottom right corner
|
||||||
controls: true,
|
controls: true,
|
||||||
|
|
||||||
|
@ -2721,7 +2724,7 @@
|
||||||
function showSlide( slide ) {
|
function showSlide( slide ) {
|
||||||
|
|
||||||
// Show the slide element
|
// Show the slide element
|
||||||
slide.style.display = 'block';
|
slide.style.display = config.display;
|
||||||
|
|
||||||
// Media elements with data-src attributes
|
// Media elements with data-src attributes
|
||||||
toArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {
|
toArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {
|
||||||
|
|
Loading…
Reference in a new issue