diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-05-16 23:45:43 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-05-16 23:45:43 +0200 |
commit | d2166784813ad161fe3118e2faf325fdeb93fc3c (patch) | |
tree | ddcfa59a398b8bb394208ee29b55a8a917765739 /apps | |
parent | 9e83c3f823a545ea91b584d3d7c8a81ebf8c2fb4 (diff) | |
download | nextcloud-server-d2166784813ad161fe3118e2faf325fdeb93fc3c.tar.gz nextcloud-server-d2166784813ad161fe3118e2faf325fdeb93fc3c.zip |
Contacts: removed check for empty FN field because Chrome/Chromium barfed.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/js/contacts.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 77c4efc9c5e..94e3e350d71 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -149,13 +149,13 @@ Contacts={ } ] ); - $('#fn').blur(function(){ + /*$('#fn').blur(function(){ if($('#fn').val() == '') { OC.dialogs.alert(t('contacts','The name field cannot be empty. Please enter a name for this contact.'), t('contacts','Name is empty'), function() { $('#fn').focus(); }); $('#fn').focus(); return false; } - }); + });*/ // Name has changed. Update it and reorder. $('#fn').change(function(){ |