File "scanner.js"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/better-wp-security/core/modules/site-scanner/js/scanner.js
File size: 828 bytes
MIME-type: text/plain
Charset: utf-8
'use strict';
( function( $ ) {
var itsecSiteScanner = {
init: function() {
this.bindEvents();
},
bindEvents: function() {
$( document ).on( 'click', '.itsec-site-scan-toggle-details', this.toggleDetails );
},
toggleDetails: function( e ) {
e.preventDefault();
var $container = $( this ).parents( '.itsec-site-scan-results-section' );
var $details = $container.find( '.itsec-site-scan__details' );
if ( $details.is( ':visible' ) ) {
$( this ).text( wp.i18n.__( 'Show Details', 'better-wp-security' ) ).attr( 'aria-expanded', false );
$details.hide();
} else {
$( this ).text( wp.i18n.__( 'Hide Details', 'better-wp-security' ) ).attr( 'aria-expanded', true );
$details.show();
}
},
};
$( document ).ready( function() {
itsecSiteScanner.init();
} );
} )( jQuery );