Commit 73d4a6f8 authored by Dominik Schilling (ocean90)'s avatar Dominik Schilling (ocean90)
Browse files

Use jQuery.prop('checked') instead of jQuery.attr('checked'), which is deprecated.

Built from https://develop.svn.wordpress.org/trunk@27164


git-svn-id: https://core.svn.wordpress.org/trunk@27030 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent e5046633
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4694,7 +4694,7 @@
				}
			// Handle checkboxes.
			} else if ( $setting.is('input[type="checkbox"]') ) {
				$setting.attr( 'checked', !! value );
				$setting.prop( 'checked', !! value );
			}
		},
		/**
+1 −1

File changed.

Preview size limit exceeded, changes collapsed.