Skip to content

Commit 6b54ab5

Browse files
committed
prop(): Fixed incorrect position of parenthesis
Fixes gh-1003 Closes gh-1004
1 parent 5d37c0a commit 6b54ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/prop.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ $( "input" ).change(function() {
8686
$( "p" ).html(
8787
".attr( \"checked\" ): <b>" + $input.attr( "checked" ) + "</b><br>" +
8888
".prop( \"checked\" ): <b>" + $input.prop( "checked" ) + "</b><br>" +
89-
".is( \":checked\" ): <b>" + $input.is( ":checked" ) ) + "</b>";
89+
".is( \":checked\" ): <b>" + $input.is( ":checked" ) + "</b>" );
9090
}).change();
9191
]]></code>
9292
<css><![CDATA[

0 commit comments

Comments
 (0)