mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #1404 (thanks, Tom Tobin)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2413 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -29,6 +29,7 @@ function showAddAnotherPopup(triggeringLink) { | ||||
| function dismissAddAnotherPopup(win, newId, newRepr) { | ||||
|     var name = win.name.replace(/___/g, '.') | ||||
|     var elem = document.getElementById(name); | ||||
|     if (elem) { | ||||
|         if (elem.nodeName == 'SELECT') { | ||||
|             var o = new Option(newRepr, newId); | ||||
|             elem.options[elem.options.length] = o | ||||
| @@ -36,5 +37,12 @@ function dismissAddAnotherPopup(win, newId, newRepr) { | ||||
|         } else if (elem.nodeName == 'INPUT') { | ||||
|             elem.value = newId; | ||||
|         } | ||||
|     } else { | ||||
|         var toId = name + "_to"; | ||||
|         elem = document.getElementById(toId); | ||||
|         var o = new Option(newRepr, newId); | ||||
|         SelectBox.add_to_cache(toId, o); | ||||
|         SelectBox.redisplay(toId); | ||||
|     } | ||||
|     win.close(); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user