File: /home/zeusxp5/zenoxpressalongside.net/wp-content/plugins/wp-edit-username/admin/js/settings-api.js
jQuery( document ).ready( function( $ )
{
// Switches option sections.
$( '.group' ).hide();
$( '.wp-color-picker-field' ).wpColorPicker();
var activetab = '';
if ( typeof( localStorage ) != 'undefined' )
{
activetab = localStorage.getItem( 'activetab' );
}
// if url has section id as hash then set it as active or override the current local storage value.
if( window.location.hash )
{
activetab = window.location.hash;
if ( typeof( localStorage ) != 'undefined' )
{
localStorage.setItem( "activetab", activetab );
}
}
if ( activetab != '' && $( activetab ).length )
{
$( activetab ).fadeIn();
}
else
{
$( '.group:first' ).fadeIn();
}
$( '.group .collapsed' ).each( function()
{
$( this ).find( 'input:checked' ).parent().parent().parent().nextAll().each( function()
{
if ( $( this ).hasClass( 'last' ) )
{
$( this ).removeClass( 'hidden' );
return false;
}
$( this ).filter( '.hidden' ).removeClass( 'hidden' );
} );
} );
if ( activetab != '' && $( activetab + '-tab' ).length )
{
$( activetab + '-tab' ).addClass( 'nav-tab-active' );
}
else
{
$( '.nav-tab-wrapper a:first' ).addClass( 'nav-tab-active' );
}
$( '.nav-tab-wrapper a' ).click( function( evt )
{
$( '.nav-tab-wrapper a' ).removeClass( 'nav-tab-active' );
$( this ).addClass( 'nav-tab-active' ).blur();
var clicked_group = $( this ).attr( 'href' );
if ( typeof( localStorage ) != 'undefined' )
{
localStorage.setItem( "activetab", $( this ).attr( 'href' ) );
}
$( '.group' ).hide();
$( clicked_group ).fadeIn();
evt.preventDefault();
} );
$( '.sajjaddev-browse' ).on( 'click', function ( event )
{
event.preventDefault();
var self = $( this );
// Create the media frame.
var file_frame = wp.media.frames.file_frame = wp.media( {
title: self.data( 'uploader_title' ),
button:
{
text: self.data( 'uploader_button_text' ),
},
multiple: false
} );
file_frame.on( 'select', function ()
{
var attachment = file_frame.state().get( 'selection' ).first().toJSON();
self.prev( '.sajjaddev-url' ).val( attachment.url ).change();
} );
// Finally, open the modal.
file_frame.open();
} );
} );