mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
479bec1809
- fixed JS enqueue;
35 lines
815 B
JavaScript
35 lines
815 B
JavaScript
jQuery( document ).ready( function() {
|
|
/**
|
|
* Licenses
|
|
*/
|
|
jQuery( document.body ).on( 'click', '.um_license_deactivate', function() {
|
|
jQuery(this).siblings('.um-option-field').val('');
|
|
jQuery(this).parents('form.um-settings-form').submit();
|
|
});
|
|
|
|
|
|
/**
|
|
* Not licenses page
|
|
*/
|
|
if ( jQuery( '#licenses_settings' ).length === 0 ) {
|
|
var changed = false;
|
|
|
|
jQuery( 'input, textarea, select' ).change( function() {
|
|
changed = true;
|
|
});
|
|
|
|
jQuery( '#um-settings-wrap .um-nav-tab-wrapper a, #um-settings-wrap .subsubsub a' ).click( function() {
|
|
if ( changed ) {
|
|
window.onbeforeunload = function() {
|
|
return php_data.onbeforeunload_text;
|
|
};
|
|
} else {
|
|
window.onbeforeunload = '';
|
|
}
|
|
});
|
|
|
|
jQuery( '.submit input' ).click( function() {
|
|
window.onbeforeunload = '';
|
|
});
|
|
}
|
|
}); |