Skip to content

Commit e751934

Browse files
committed
removed incorrectly entered space in css entry
1 parent 227fb85 commit e751934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entries/css.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ $( "p" )
228228
backgroundColor : "#ddd",
229229
fontWeight: ""
230230
};
231-
$( this ).css( styles );
231+
$( this ).css( styles );
232232
});
233233
]]></code>
234234
<css><![CDATA[
@@ -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)