Merge pull request #26 from jgoldberg/master

.noConflict() compliance: only reference $, not jQuery, inside the closure
This commit is contained in:
Jerome Etienne 2012-07-17 23:53:28 -07:00
commit 2d05056217

View file

@ -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 );