File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/admin-metabox-sitenotes.js.tar
httpdocs/wp-content/plugins/google-analytics-for-wordpress/assets/js/admin-metabox-sitenotes.js 0000644 00000001367 15154541025 0035513 0 ustar 00 var/www/vhosts/uyarreklam.com.tr jQuery(document).ready(function() {
if (jQuery('#monsterinsights-metabox-site-notes').length === 0) {
return;
}
jQuery('#monsterinsights-metabox-site-notes input[name="_monsterinsights_sitenote_active"]').change(function () {
let checked = jQuery(this).is(':checked');
if ( checked ) {
jQuery('textarea[name="_monsterinsights_sitenote_note"]').text( sprintf( 'Published: %s', jQuery('#title').val() ) );
jQuery('#site-notes-active-container').slideDown('slow');
} else {
jQuery('#site-notes-active-container').slideUp('slow');
}
});
jQuery('#title').change(function(){
let current_title = jQuery(this).val();
jQuery('textarea[name="_monsterinsights_sitenote_note"]').text( sprintf( 'Published: %s', current_title ) );
})
});