Skip to content

Commit 227fb85

Browse files
committed
fixed indentation issue in css entry
1 parent 78fbcb7 commit 227fb85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

entries/css.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ $( "p" )
228228
backgroundColor : "#ddd",
229229
fontWeight: ""
230230
};
231-
$( this ).css( styles );
232-
});
231+
$( this ).css( styles );
232+
});
233233
]]></code>
234234
<css><![CDATA[
235235
p {
@@ -244,7 +244,7 @@ $( "p" )
244244
<example>
245245
<desc>Increase the size of a div when you click it.</desc>
246246
<code><![CDATA[
247-
$( "div" ).on( "click", function() {
247+
$( "div" ).on( " click", function() {
248248
$( this ).css({
249249
width: function( index, value ) {
250250
return parseFloat( value ) * 1.2;

0 commit comments

Comments
 (0)