1
0
mirror of https://github.com/django/django.git synced 2025-01-27 02:29:55 +00:00

Fixed #10783 -- Fixed Javascript error when adding a new object in admin.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10516 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2009-04-11 11:33:10 +00:00
parent f4072f5be8
commit 0d2cf7bdd6

View File

@ -38,8 +38,8 @@ document.getElementsBySelector = function(selector) {
var tagName = bits[0];
var id = bits[1];
var element = document.getElementById(id);
if (tagName && element.nodeName.toLowerCase() != tagName) {
// tag with that ID not found, return false
if (!element || (tagName && element.nodeName.toLowerCase() != tagName)) {
// ID not found or tag with that ID not found, return false.
return new Array();
}
// Set currentContext to contain just this element