Skip to content

Commit

Permalink
Fix error when serving application/xhtml+xml.
Browse files Browse the repository at this point in the history
Bug reported by Chris Pappas <chrispappas12__at__gmail.com>
  • Loading branch information
tuupola committed Nov 14, 2008
1 parent 8e5c54a commit d6601b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.lazyload.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
/* When appear is triggered load original image. */
$(self).one("appear", function() {
if (!this.loaded) {
$("<img>")
$("<img />")
.attr("src", $(self).attr("original"))
.bind("load", function() {
$(self)
Expand Down

0 comments on commit d6601b5

Please sign in to comment.