зеркало из https://github.com/mozilla/pjs.git
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
This commit is contained in:
Родитель
5d60a61ea2
Коммит
d58b910b9b
|
@ -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());
|
||||
|
|
Загрузка…
Ссылка в новой задаче