| 1 | jQuery( function( $ ) { |
| 2 | $( '#siteorigin-installer-notice .siteorigin-notice-dismiss' ).on( 'click', function( e ) { |
| 3 | e.preventDefault(); |
| 4 | var $$ = $( this ).trigger( 'blur' ); |
| 5 | $.get( $$.attr('href') ); |
| 6 | |
| 7 | $( '#siteorigin-installer-notice' ).slideUp( function(){ |
| 8 | $( this ).remove(); |
| 9 | } ) |
| 10 | } ); |
| 11 | } ); |
| 12 |