Wait until keyup to set the slug input on the post page, otherwise the final character is not stored. props SergeyBiryukov, fixes #23613.
git-svn-id: http://core.svn.wordpress.org/trunk@24059 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c7458f78f8
commit
848304e3c0
|
@ -694,6 +694,7 @@ jQuery(document).ready( function($) {
|
|||
b.children('.cancel').click();
|
||||
return false;
|
||||
}
|
||||
}).keyup(function(e) {
|
||||
real_slug.val(this.value);
|
||||
}).focus();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue