Merge pull request #13912 from woocommerce/fix-13910

Fade gallery in if no images are set.
This commit is contained in:
Claudiu Lodromanean 2017-04-05 08:59:32 -07:00 committed by GitHub
commit bb6d64c56a
2 changed files with 2 additions and 1 deletions

View File

@ -79,6 +79,7 @@ jQuery( function( $ ) {
// No images? Abort.
if ( 0 === this.$images.length ) {
this.$target.css( 'opacity', 1 );
return;
}

File diff suppressed because one or more lines are too long