Skip to content

Commit

Permalink
Merge pull request #26 from jgoldberg/master
Browse files Browse the repository at this point in the history
.noConflict() compliance: only reference $, not jQuery, inside the closure
  • Loading branch information
jeromeetienne committed Jul 18, 2012
2 parents 590d78f + 5fc6af9 commit 2d05056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.qrcode.js
Expand Up @@ -83,7 +83,7 @@


return this.each(function(){ return this.each(function(){
var element = options.render == "canvas" ? createCanvas() : createTable(); var element = options.render == "canvas" ? createCanvas() : createTable();
jQuery(element).appendTo(this); $(element).appendTo(this);
}); });
}; };
})( jQuery ); })( jQuery );

0 comments on commit 2d05056

Please sign in to comment.