|
1
|
( function ( $ ) { |
|
2
|
|
|
3
|
$( document ).ready( function () { |
|
4
|
|
|
5
|
$( document ).on( 'change', '.pvc-show-post-thumbnail', function () { |
|
6
|
$( this ).closest( '.widget-content' ).find( '.pvc-post-thumbnail-size' ).fadeToggle( 300 ); |
|
7
|
} ); |
|
8
|
|
|
9
|
} ); |
|
10
|
|
|
11
|
} )( jQuery );
|