Skip to content

Commit

Permalink
Add missing semicolon, Fixes #88
Browse files Browse the repository at this point in the history
  • Loading branch information
oculus42 authored Jan 15, 2017
1 parent 43b9fa1 commit ba7bad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions printThis.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
var href = $(this).attr("href");
if (href) {
var media = $(this).attr("media") || "all";
$head.append("<link type='text/css' rel='stylesheet' href='" + href + "' media='" + media + "'>")
$head.append("<link type='text/css' rel='stylesheet' href='" + href + "' media='" + media + "'>");
}
});

Expand Down Expand Up @@ -255,4 +255,4 @@
jQuery.fn.outer = function() {
return $($("<div></div>").html(this.clone())).html()
}
})(jQuery);
})(jQuery);

0 comments on commit ba7bad4

Please sign in to comment.