Current File : /home/inlingua/public_html/crm/ninexb/wp-content/plugins/ultimate-member/assets/js/um-gdpr.js
(function ( $ ) {
	'use strict';

	$( document ).on( 'click', 'a.um-toggle-gdpr', function ( e ) {
		let $a = jQuery( e.currentTarget );
		let $area = $a.closest( '.um-field-area' );
		let $content = $area.find( '.um-gdpr-content' );

		if ( $content.is( ':visible' ) ) {
			$area.find( 'a.um-toggle-gdpr' ).text( $a.data( 'toggle-show' ) );
			$content.hide().find( 'a.um-toggle-gdpr' ).remove();
			if ( $a.length ) {
				$a.get( 0 ).scrollIntoView();
			}
		} else {
			$area.find( 'a.um-toggle-gdpr' ).text( $a.data( 'toggle-hide' ) );
			$content.show().prepend( $a.clone() );
		}

	} );

})( jQuery );