Bug 492310 - Remove unused switchToTwin, r=bienvenu

This commit is contained in:
Phil Ringnalda 2009-05-11 19:20:32 -07:00
Родитель b729f7f050
Коммит 008b7860a7
1 изменённых файлов: 0 добавлений и 26 удалений

Просмотреть файл

@ -1244,32 +1244,6 @@ EmailConfigWizard.prototype =
}
},
switchToTwin: function(elt, twin)
{
twin.hidden = false;
elt.hidden = true;
switch (twin.tagName)
{
case 'textbox':
twin.value = elt.value; // comes from label
twin.select();
break;
case 'menulist':
twin.selected = elt.value;
twin.focus();
break;
case 'label':
switch (elt.tagName)
{
case 'menulist':
twin.value = elt.selectedItem.label;
break;
case 'textbox':
twin.value = elt.value;
}
}
},
clearError: function(which) {
_hide(which);
getElementById(which).textContent = "";