Changeset 1bc37c
- Timestamp:
- Nov 23, 2011, 9:58:27 AM (11 years ago)
- Branches:
- ng_0.9
- Children:
- c9f1d7
- Parents:
- 855e5e
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
content/v_identity.js
r855e5e r1bc37c 29 29 Components.utils.import("resource://v_identity/vI_account.js", virtualIdentityExtension); 30 30 Components.utils.import("resource://v_identity/vI_prefs.js", virtualIdentityExtension); 31 Components.utils.import("resource://v_identity/vI_replyToSelf.js", virtualIdentityExtension); 32 Components.utils.import("resource://v_identity/plugins/signatureSwitch.js", virtualIdentityExtension); 31 33 32 34 var main = { … … 139 141 Log.debug("\nVIdentity_GenericSendMessage\n"); 140 142 141 if (msgType == Components.interfaces.nsIMsgCompDeliverMode.Now) { vI.msgIdentityCloneTools.addReplyToSelf(); } 143 if (msgType == Components.interfaces.nsIMsgCompDeliverMode.Now) 144 vI.addReplyToSelf(); 142 145 143 146 var vid = document.getElementById("virtualIdentityExtension_msgIdentityClone").vid … … 249 252 initSystemStage2 : function() { 250 253 Log.debug("initSystemStage2.\n") 251 vI. msgIdentityCloneTools.initReplyTo();254 vI.initReplyTo(); 252 255 vI.storage.init(); 253 256 vI.smartIdentity.init(); … … 269 272 var parent_hbox = main.elements.Obj_MsgIdentity.parentNode; 270 273 var storage_box = document.getElementById("addresses-box"); 271 var virtualIdentityExtension_autoReplyToSelfLabel = document.getElementById("virtualIdentityExtension_autoReplyToSelfLabel ");274 var virtualIdentityExtension_autoReplyToSelfLabel = document.getElementById("virtualIdentityExtension_autoReplyToSelfLabelBox"); 272 275 273 276 storage_box.removeChild(virtualIdentityExtension_autoReplyToSelfLabel); -
content/v_identity.xul
r855e5e r1bc37c 18 18 19 19 - The Initial Developer of the Original Code is Rene Ejury. 20 - Portions created by the Initial Developer are Copyright (C) 20 0720 - Portions created by the Initial Developer are Copyright (C) 2011 21 21 - the Initial Developer. All Rights Reserved. 22 22 … … 34 34 ]> 35 35 36 <overlay id="v_identity"36 <overlay id="virtualIdentityExtension_MsgComposeOverlay" 37 37 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 38 38 39 39 <script type="application/x-javascript" src="chrome://v_identity/content/v_identity.js" /> 40 <script type="application/x-javascript" src="chrome://v_identity/content/vI_msgIdentityCloneTools.js" />41 40 <script type="application/x-javascript" src="chrome://v_identity/content/vI_smartIdentity.js" /> 42 41 <script type="application/x-javascript" src="chrome://v_identity/content/vI_statusmenu.js" /> … … 57 56 <vbox flex="1" id="addresses-box"> <!-- this is used as a strorage, elements will be rearranged by v_identity_init --> 58 57 59 <label id="virtualIdentityExtension_autoReplyToSelfLabel" context="virtualIdentityExtension_vIAutoReplyToSelfMenu" value="&vident.composeDialog.autoReplyToSelf.label;" hidden="true" /> 60 58 <vbox id="virtualIdentityExtension_autoReplyToSelfLabelBox"> 59 <spacer flex="1"/> 60 <label id="virtualIdentityExtension_autoReplyToSelfLabel" context="virtualIdentityExtension_vIAutoReplyToSelfMenu" value="&vident.composeDialog.autoReplyToSelf.label;" hidden="true" /> 61 <spacer flex="1"/> 62 </vbox> 61 63 <hbox id="virtualIdentityExtension_msgIdentityHbox" flex="1"> 62 64 <menulist id="virtualIdentityExtension_msgIdentityClone" class="identity_clone-menulist" vid="false"
Note: See TracChangeset
for help on using the changeset viewer.