We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3610382 commit 1389295Copy full SHA for 1389295
snippets/jquerify/jquerify.js
@@ -9,14 +9,14 @@
9
var s = document.createElement('script');
10
s.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js');
11
s.addEventListener('load', function(){
12
- console.log('jquery loaded!');
13
-
14
- if(dollarInUse) {
15
- jQuery.noConflict();
16
- console.log('`$` already in use; use `jQuery`');
17
- }
+ console.log('jQuery loaded!');
+
+ if(dollarInUse) {
+ jQuery.noConflict();
+ console.log('`$` already in use; use `jQuery`');
+ }
18
});
19
20
document.body.appendChild(s);
21
}
22
0 commit comments