FossilRepo
|
1
|
/*global jQuery:false*/ |
|
2
|
'use strict'; |
|
3
|
/* Puts the included jQuery into our own namespace using noConflict and passing |
|
4
|
* it 'true'. This ensures that the included jQuery doesn't pollute the global |
|
5
|
* namespace (i.e. this preserves pre-existing values for both window.$ and |
|
6
|
* window.jQuery). |
|
7
|
*/ |
|
8
|
window.django = {jQuery: jQuery.noConflict(true)}; |
|
9
|
|