1
0
mirror of https://github.com/django/django.git synced 2025-04-02 04:26:42 +00:00

Stopped the admin JavaScript code from completely removing the jQuery object from the global namespace to ease the use of jQuery plugins. The django.jQuery object is still supposed to be used by Django's own JavaScript files. Refs .

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16415 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2011-06-16 16:34:28 +00:00
parent 44b03484ec
commit aa40dc6252

@ -1,4 +1,4 @@
// Puts the included jQuery into our own namespace
var django = {
"jQuery": jQuery.noConflict(true)
"jQuery": jQuery.noConflict()
};