Files

14 lines
236 B
JavaScript
Executable File

/**
* Block Alert
*/
( function( $ ) {
$( document ).ready( function() {
$( document ).on( 'click', '.cnvs-block-alert .cnvs-close', function() {
$( this ).closest( '.cnvs-block-alert' ).remove();
} );
} );
} )( jQuery );