mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-14 03:21:55 +01:00
Prevent accidental multiple click when creating new categories. Props mdawaffe. fixes #17936
git-svn-id: http://svn.automattic.com/wordpress/trunk@20650 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a19ca4686c
commit
93d9788068
@ -314,12 +314,14 @@ jQuery(document).ready( function($) {
|
|||||||
if ( !$('#new'+taxonomy).val() )
|
if ( !$('#new'+taxonomy).val() )
|
||||||
return false;
|
return false;
|
||||||
s.data += '&' + $( ':checked', '#'+taxonomy+'checklist' ).serialize();
|
s.data += '&' + $( ':checked', '#'+taxonomy+'checklist' ).serialize();
|
||||||
|
$( '#' + taxonomy + '-add-submit' ).prop( 'disabled', true );
|
||||||
return s;
|
return s;
|
||||||
};
|
};
|
||||||
|
|
||||||
catAddAfter = function( r, s ) {
|
catAddAfter = function( r, s ) {
|
||||||
var sup, drop = $('#new'+taxonomy+'_parent');
|
var sup, drop = $('#new'+taxonomy+'_parent');
|
||||||
|
|
||||||
|
$( '#' + taxonomy + '-add-submit' ).prop( 'disabled', false );
|
||||||
if ( 'undefined' != s.parsed.responses[0] && (sup = s.parsed.responses[0].supplemental.newcat_parent) ) {
|
if ( 'undefined' != s.parsed.responses[0] && (sup = s.parsed.responses[0].supplemental.newcat_parent) ) {
|
||||||
drop.before(sup);
|
drop.before(sup);
|
||||||
drop.remove();
|
drop.remove();
|
||||||
|
Loading…
Reference in New Issue
Block a user