Skip to content

Commit

Permalink
Add missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
jitter committed Feb 14, 2011
1 parent bb94085 commit 217a991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/effects.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ function defaultDisplay( nodeName ) {
// create a temp element and check it's default display, this
// will ensure that the value returned is not a user-tampered
// value.
elem = jQuery("<" + nodeName + ">").appendTo("body"),
elem = jQuery("<" + nodeName + ">").appendTo("body");
display = elem.css("display");

// Remove temp element
Expand Down

0 comments on commit 217a991

Please sign in to comment.