From 28728c1f75bed09eaf0d0cd0bf1f0bfff2ecc826 Mon Sep 17 00:00:00 2001 From: "ducarroz%netscape.com" Date: Tue, 27 Jun 2000 06:14:42 +0000 Subject: [PATCH] Fix for bug 43468. We need also to use .value when we pre file a recipient else we will loose the content of every non visible fields! This is more a work around that the reall fix which should be in the textcontrolframe code. R=putterman git-svn-id: svn://10.0.0.236/trunk@73297 18797224-902f-48f8-a5cc-f745e15eee43 --- .../compose/resources/content/addressingWidgetOverlay.js | 1 + 1 file changed, 1 insertion(+) diff --git a/mozilla/mailnews/compose/resources/content/addressingWidgetOverlay.js b/mozilla/mailnews/compose/resources/content/addressingWidgetOverlay.js index e8c14a7bca6..3e6d9970b2a 100644 --- a/mozilla/mailnews/compose/resources/content/addressingWidgetOverlay.js +++ b/mozilla/mailnews/compose/resources/content/addressingWidgetOverlay.js @@ -157,6 +157,7 @@ function _awSetInputAndPopup(inputValue, popupValue, parentNode, templateNode) if ( input && input.length == 1 ) { input[0].setAttribute("value", inputValue); + input[0].value = inputValue; input[0].setAttribute("id", "msgRecipient#" + top.MAX_RECIPIENTS); } var select = newNode.getElementsByTagName(awSelectElementName());