summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-03 18:32:31 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-03 18:32:31 +0000
commit62a10c4b2435c1a8b31d000ea5dadfa197f0f561 (patch)
tree07421b26276e324ea01e44dfa0464f13e15c3164 /roundcubemail/program/js/app.js
parent07e9319fd0eaf1fa22f745e48ac044418bc2b575 (diff)
Fix spelling
git-svn-id: https://svn.roundcube.net/trunk@5955 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index ca73db57c..430d92daf 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -277,13 +277,13 @@ function rcube_webmail()
if (this.gui_objects.contactslist) {
this.contact_list = new rcube_list_widget(this.gui_objects.contactslist,
{ multiselect:true, draggable:false, keyboard:false });
- this.contact_list.addEventListener('select', function(o){ ref.compose_recipeint_select(o); });
+ this.contact_list.addEventListener('select', function(o){ ref.compose_recipient_select(o); });
this.contact_list.addEventListener('dblclick', function(o){ ref.compose_add_recipient('to'); });
this.contact_list.init();
}
- if (this.gui_objects.adressbookslist) {
- this.gui_objects.folderlist = this.gui_objects.adressbookslist;
+ if (this.gui_objects.addressbookslist) {
+ this.gui_objects.folderlist = this.gui_objects.addressbookslist;
this.enable_command('list-adresses', true);
}
}
@@ -2998,7 +2998,7 @@ function rcube_webmail()
.attr('autocomplete', 'off');
};
- this.compose_recipeint_select = function(list)
+ this.compose_recipient_select = function(list)
{
this.enable_command('add-recipient', list.selection.length > 0);
};