- Timestamp:
- Oct 5, 2010, 3:33:18 PM (12 years ago)
- Branches:
- ng_0.6, ng_0.8, ng_0.9
- Children:
- 213e1e
- Parents:
- dd1f45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
chrome/content/v_identity/vI_rdfAccountMismatchDialog.js
rdd1f45 r0852d9 33 33 // display the relevant help-tags 34 34 document.getElementById("rdfAccountMismatchDialog_vbox_" + vI_rdfAccountMismatchDialog.type).removeAttribute("hidden"); 35 document.getElementById("rdfAccountMismatchDialog_listhead_" + vI_rdfAccountMismatchDialog.type).removeAttribute("hidden"); 35 36 36 37 for (var i = 0; i < vI_rdfAccountMismatchDialog.mismatchItems.length; i++) { 37 var label = document.createElement("label"); 38 label.setAttribute("id", "mismatchLine_" + i); 39 label.setAttribute("class", "mismatchLine"); 40 label.setAttribute("type",vI_rdfAccountMismatchDialog.type); 41 label.setAttribute("oldkey",vI_rdfAccountMismatchDialog.mismatchItems[i].oldkey); 42 label.setAttribute("label",vI_rdfAccountMismatchDialog.mismatchItems[i].label); 43 label.setAttribute("ext1",vI_rdfAccountMismatchDialog.mismatchItems[i].ext1); 44 label.setAttribute("ext2",vI_rdfAccountMismatchDialog.mismatchItems[i].ext2); 45 label.setAttribute("count",vI_rdfAccountMismatchDialog.mismatchItems[i].count); 46 document.getElementById("rdfAccountMismatchDialog_groupbox").appendChild(label) 38 // var label = document.createElement("label"); 39 var listitem = document.createElement("listitem"); 40 listitem.setAttribute("id", "mismatchLine_" + i); 41 listitem.setAttribute("class", "mismatchLine"); 42 listitem.setAttribute("type",vI_rdfAccountMismatchDialog.type); 43 listitem.setAttribute("oldkey",vI_rdfAccountMismatchDialog.mismatchItems[i].oldkey); 44 listitem.setAttribute("label",vI_rdfAccountMismatchDialog.mismatchItems[i].label); 45 listitem.setAttribute("ext1",vI_rdfAccountMismatchDialog.mismatchItems[i].ext1); 46 listitem.setAttribute("ext2",vI_rdfAccountMismatchDialog.mismatchItems[i].ext2); 47 listitem.setAttribute("count",vI_rdfAccountMismatchDialog.mismatchItems[i].count); 48 document.getElementById("rdfAccountMismatchDialog_listbox").appendChild(listitem) 47 49 } 48 50 },
Note: See TracChangeset
for help on using the changeset viewer.