Changeset 5955 in subversion
- Timestamp:
- Mar 3, 2012 1:32:31 PM (15 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 4 edited
-
program/js/app.js (modified) (2 diffs)
-
program/steps/mail/compose.inc (modified) (3 diffs)
-
skins/larry/templates/compose.html (modified) (1 diff)
-
skins/larry/templates/messagepreview.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r5951 r5955 278 278 this.contact_list = new rcube_list_widget(this.gui_objects.contactslist, 279 279 { multiselect:true, draggable:false, keyboard:false }); 280 this.contact_list.addEventListener('select', function(o){ ref.compose_recip eint_select(o); });280 this.contact_list.addEventListener('select', function(o){ ref.compose_recipient_select(o); }); 281 281 this.contact_list.addEventListener('dblclick', function(o){ ref.compose_add_recipient('to'); }); 282 282 this.contact_list.init(); 283 283 } 284 284 285 if (this.gui_objects.ad ressbookslist) {286 this.gui_objects.folderlist = this.gui_objects.ad ressbookslist;285 if (this.gui_objects.addressbookslist) { 286 this.gui_objects.folderlist = this.gui_objects.addressbookslist; 287 287 this.enable_command('list-adresses', true); 288 288 } … … 2999 2999 }; 3000 3000 3001 this.compose_recip eint_select = function(list)3001 this.compose_recipient_select = function(list) 3002 3002 { 3003 3003 this.enable_command('add-recipient', list.selection.length > 0); -
trunk/roundcubemail/program/steps/mail/compose.inc
r5925 r5955 1520 1520 1521 1521 1522 function rcmail_ad ressbook_list($attrib = array())1522 function rcmail_addressbook_list($attrib = array()) 1523 1523 { 1524 1524 global $RCMAIL, $OUTPUT; … … 1549 1549 } 1550 1550 1551 $OUTPUT->add_gui_object('ad ressbookslist', $attrib['id']);1551 $OUTPUT->add_gui_object('addressbookslist', $attrib['id']); 1552 1552 1553 1553 return html::tag('ul', $attrib, $out, html::$common_attrib); … … 1585 1585 'dsncheckbox' => 'rcmail_dsn_checkbox', 1586 1586 'storetarget' => 'rcmail_store_target_selection', 1587 'ad ressbooks' => 'rcmail_adressbook_list',1587 'addressbooks' => 'rcmail_addressbook_list', 1588 1588 'addresslist' => 'rcmail_contacts_list', 1589 1589 )); -
trunk/roundcubemail/skins/larry/templates/compose.html
r5809 r5955 17 17 <div id="compose-contacts" class="uibox listbox"> 18 18 <h2 class="boxtitle"><roundcube:label name="contacts" /></h2> 19 <roundcube:object name="ad ressbooks" id="directorylist" class="listing" />19 <roundcube:object name="addressbooks" id="directorylist" class="listing" /> 20 20 <div class="scroller withfooter"> 21 21 <roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" /> -
trunk/roundcubemail/skins/larry/templates/messagepreview.html
r5916 r5955 30 30 <roundcube:if condition="env:mailbox != config:drafts_mbox"> 31 31 <roundcube:button command="reply" type="link" class="button reply" classSel="button reply pressed" innerClass="inner" title="replytomessage" content="<-" /> 32 <roundcube:button command="reply all" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="<<-" />32 <roundcube:button command="reply-all" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="<<-" /> 33 33 <roundcube:button command="forward" type="link" class="button forward" classSel="button forward pressed" innerClass="inner" title="forwardmessage" content="->" /> 34 34
Note: See TracChangeset
for help on using the changeset viewer.
