jquery.init.js 363 B

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