Merge "settings: Use .text() instead of .html() for option's label"

This commit is contained in:
jenkins-bot 2015-03-26 10:34:41 +00:00 committed by Gerrit Code Review
commit 1572bcf150

View file

@ -116,7 +116,7 @@
} ),
$label = $( '<label>' )
.attr( 'for', domId )
.html( content[ 1 ] )
.text( content[ 1 ] )
.prepend( $( '<span>' ).text( content[ 0 ] ) ),
$p = $( '<p>' ).append( $input, $label );