Changeset dd3c77
- Timestamp:
- Jul 17, 2009, 8:03:13 PM (12 years ago)
- Branches:
- lite_0.1, multiEdit, ng_0.6, ng_0.6_help, ng_0.8, ng_0.9
- Children:
- 48f9f5
- Parents:
- f2b2cb
- Location:
- chrome/content/v_identity
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chrome/content/v_identity/vI_rdfDataEditor.js
rf2b2cb rdd3c77 46 46 47 47 init : function() { 48 vI_rdfDataEditor.__recipient = window.arguments[0]["recipientCol"]; 48 if (window.arguments[0]["recipientCol"]) 49 vI_rdfDataEditor.__recipient = window.arguments[0]["recipientCol"]; 49 50 vI_rdfDataEditor.__type = window.arguments[1]; 50 51 vI_rdfDataEditor.__rdfDatasource = window.arguments[2]; -
chrome/content/v_identity/vI_rdfDataTree.js
rf2b2cb rdd3c77 430 430 newItem : function() { 431 431 var treeType = vI_rdfDataTree.tabbox.selectedPanel.id; 432 var newItemPreset = { 433 recipientCol : "", 434 senderCol : "", 435 smtpKey : "", 436 idKey : gAccountManager.defaultAccount.defaultIdentity.key, 437 resource : null } 432 var newItemPreset = { identityData : new identityData ("", null, null, null, null, null) }; 438 433 // XXXX create useful preset 439 434 var retVar = { treeType: null }; 435 440 436 window.openDialog("chrome://v_identity/content/vI_rdfDataEditor.xul",0, 441 437 "chrome, dialog, modal, alwaysRaised, resizable=yes", 442 438 newItemPreset, treeType, 443 439 vI_rdfDatasource, retVar).focus(); 440 444 441 // reload all trees (multiple types might have changed) 445 442 for each (var treeType in vI_rdfDataTree.treeTypes) {
Note: See TracChangeset
for help on using the changeset viewer.