DEV Community

[Comment from a deleted post]
Collapse
 
amarok24 profile image
Info Comment hidden by post author - thread only visible in this permalink
Jan Prazak

Hmm, looks interesting, but let me point something out, why do you use this awkward technique to insert jQuery:

var y = document.createElement("script");
y.src= "cdnjs.cloudflare.com/ajax/libs/jqu...";
document.head.prepend(y);

instead of mentioning the dependency in the docs and including it the proper way?
And why is there only minified JS source code on Github?