Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
backwpup
/
assets
/
js
/
//home/puskom/mastur/backwpup/assets/js/page_settings.js
jQuery( document ).ready( function ( $ ) { var anchor = $( 'input[name="anchor"]' ); var tab_wrapper_a = $( '.nav-tab-wrapper>a' ); var actual_anchor = window.location.hash; if ( actual_anchor !== '' ) { actual_anchor = '#' + actual_anchor.replace( '#', '' ); } if ( actual_anchor !== '' ) { anchor.val( actual_anchor ); } $( '.table' ).addClass( 'ui-tabs-hide' ); $( anchor.val() ).removeClass( 'ui-tabs-hide' ); if ( anchor.val() === '#backwpup-tab-information' ) { $( '#submit' ).hide(); $( '#default_settings' ).hide(); } if ( anchor.val() === '#backwpup-tab-license' ) { $( '#submit' ).hide(); $( '#default_settings' ).hide(); $( 'input[name="license_submit"]' ).attr( 'type', 'submit' ); } tab_wrapper_a.removeClass( 'nav-tab-active' ); tab_wrapper_a.each( function () { if ( $( this ).attr( 'href' ) === anchor.val() ) { $( this ).addClass( 'nav-tab-active' ); } } ); tab_wrapper_a.on( 'click', function () { var clickedid = $( this ).attr( 'href' ); tab_wrapper_a.removeClass( 'nav-tab-active' ); $( this ).addClass( 'nav-tab-active' ); $( '.table' ).addClass( 'ui-tabs-hide' ); $( clickedid ).removeClass( 'ui-tabs-hide' ); $( '#message' ).hide(); anchor.val( clickedid ); if ( clickedid === '#backwpup-tab-information' ) { $( '#submit' ).hide(); $( '#default_settings' ).hide(); } else if ( clickedid === '#backwpup-tab-license' ) { $( '#submit' ).hide(); $( '#default_settings' ).hide(); $( 'input[name="license_submit"]' ).attr( 'type', 'submit' ); } else { $( '#submit' ).show(); $( '#default_settings' ).show(); $( 'input[name="license_submit"]' ).attr( 'type', 'button' ); } window.location.hash = clickedid; window.scrollTo( 0, 0 ); return false; } ); $( '#authentication_method' ).change( function () { var auth_method = $( '#authentication_method' ).val(); if ( '' === auth_method ) { $( '.authentication_basic' ).hide(); $( '.authentication_query_arg' ).hide(); $( '.authentication_user' ).hide(); } else if ( 'basic' === auth_method ) { $( '.authentication_basic' ).show(); $( '.authentication_query_arg' ).hide(); $( '.authentication_user' ).hide(); } else if ( 'query_arg' === auth_method ) { $( '.authentication_basic' ).hide(); $( '.authentication_query_arg' ).show(); $( '.authentication_user' ).hide(); } else if ( 'user' === auth_method ) { $( '.authentication_basic' ).hide(); $( '.authentication_query_arg' ).hide(); $( '.authentication_user' ).show(); } } ); } );