mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #975 -- JavaScript shortcut in raw_id_admin for ManyToManyFields no longer replaces existing values.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1580 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -10,7 +10,7 @@ function showRelatedObjectLookupPopup(triggeringLink) { | ||||
|  | ||||
| function dismissRelatedLookupPopup(win, chosenId) { | ||||
|     var elem = document.getElementById(win.name); | ||||
|     if (elem.className.indexOf('vCommaSeparatedIntegerField') != -1 && elem.value) { | ||||
|     if (elem.className.indexOf('vRawIdAdminField') != -1 && elem.value) { | ||||
|         elem.value += ',' + chosenId; | ||||
|     } else { | ||||
|         document.getElementById(win.name).value = chosenId; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user