Skip to content

Commit 28fe8f0

Browse files
committed
Moved noConflict call to below where $ is used. One line change.
1 parent 1cb3361 commit 28fe8f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/jQuery.noConflict.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ $.noConflict();
2424
<script src="other_lib.js"></script>
2525
<script src="jquery.js"></script>
2626
<script>
27-
$.noConflict();
2827
jQuery( document ).ready(function( $ ) {
2928
// Code that uses jQuery's $ can follow here.
3029
});
30+
$.noConflict();
3131
// Code that uses other library's $ can follow here.
3232
</script>
3333
</code></pre>

0 commit comments

Comments
 (0)