Docs: Fix typo in a comment in `wp-admin/js/postbox.js`.

Props yoavf.
Fixes #36349.

git-svn-id: https://develop.svn.wordpress.org/trunk@37195 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-04-13 07:28:52 +00:00
parent 2014288c62
commit 784c7d75ec
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ var postboxes;
tolerance: 'pointer',
forcePlaceholderSize: true,
helper: function( event, element ) {
// `helper: 'clone'` is equilavalent to `return element.clone();`
// `helper: 'clone'` is equivalent to `return element.clone();`
// Cloning a checked radio and then inserting that clone next to the original
// radio unchecks the original radio (since only one of the two can be checked).
// We get around this by renaming the helper's inputs' name attributes so that,