/**
* Admin scripts for Simple Maintenance Mode.
*
* @package Simple_Maintenance_Mode
*/
(function( $ ) {
'use strict';
$( document ).ready( function() {
$( '#smm_enabled' ).on( 'change', function() {
if ( $( this ).is( ':checked' ) ) {
$( '.smm-status-indicator' ).addClass( 'active' );
} else {
$( '.smm-status-indicator' ).removeClass( 'active' );
}
});
});
})( jQuery );