This is just some static backup of the original site, don't expect every link to work!

source: chrome/content/v_identity/vI_smartReplyDialog.js @ 9e9bab

Last change on this file since 9e9bab was 9e9bab, checked in by root <root@…>, 15 years ago

initial import v0.4.0

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/* ***** BEGIN LICENSE BLOCK *****
2    This program is free software; you can redistribute it and/or modify
3    it under the terms of the GNU General Public License as published by
4    the Free Software Foundation; either version 2 of the License, or
5    (at your option) any later version.
6
7    This program is distributed in the hope that it will be useful,
8    but WITHOUT ANY WARRANTY; without even the implied warranty of
9    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10    GNU General Public License for more details.
11
12    You should have received a copy of the GNU General Public License
13    along with this program; if not, write to the Free Software
14    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
16    The Original Code is the Virtual Identity Extension.
17
18    The Initial Developer of the Original Code is Rene Ejury.
19    Portions created by the Initial Developer are Copyright (C) 2007
20    the Initial Developer. All Rights Reserved.
21
22    Contributor(s):
23 * ***** END LICENSE BLOCK ***** */
24
25vI_smartReply_dialog = {
26    Obj_radioGroup : null,
27    all_addresses : null,
28   
29    init : function() { 
30        vI_smartReply_dialog.Obj_radioGroup = document.getElementById("replySelector.radiogroup");
31        // var all_addresses = { number : 0, emails : {}, fullNames : {}, combinedNames : {} };
32        vI_smartReply_dialog.all_addresses = window.arguments[0];
33        for (index = 0; index < vI_smartReply_dialog.all_addresses.number; index++)
34            vI_smartReply_dialog.add_row(vI_smartReply_dialog.all_addresses.combinedNames.value[index]);
35    },
36
37    add_row : function(combinedName) {
38        var radio = document.createElement("radio");
39        radio.setAttribute("label",combinedName);
40        vI_smartReply_dialog.Obj_radioGroup.appendChild(radio);
41    },
42
43    accept : function() {
44        /* window.argument[1] stores callback function */
45        window.arguments[1](vI_smartReply_dialog.all_addresses, vI_smartReply_dialog.Obj_radioGroup.selectedIndex);
46        document.documentElement.acceptDialog();
47    }
48}
49window.addEventListener("load", vI_smartReply_dialog.init, false);
Note: See TracBrowser for help on using the repository browser.