diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-05-03 15:54:51 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-05-03 16:01:40 +0200 |
commit | 8076b1e12dec3e3861b7024c74873ea330d052c3 (patch) | |
tree | 79843b9a48f9de1fadec4881524b6d9de5d85173 | |
parent | a89231ac1d34d497a275add9a6b0b0482e924d6f (diff) | |
download | nextcloud-server-8076b1e12dec3e3861b7024c74873ea330d052c3.tar.gz nextcloud-server-8076b1e12dec3e3861b7024c74873ea330d052c3.zip |
Contacts: Remove some logging.
-rw-r--r-- | apps/contacts/js/contacts.js | 1 | ||||
-rw-r--r-- | apps/contacts/js/jquery.combobox.js | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 3672a094f4a..bb8b6b89e57 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -154,7 +154,6 @@ Contacts={ $('#contacts_downloadcard').tipsy({gravity: 'ne'}); $('#contacts_propertymenu_button').tipsy(); $('#contacts_newcontact, #chooseaddressbook').tipsy({gravity: 'sw'}); - console.log($('#contacts_newcontact').html()); }, Card:{ id:'', diff --git a/apps/contacts/js/jquery.combobox.js b/apps/contacts/js/jquery.combobox.js index d9d8ccc00f7..f12d1d7dd20 100644 --- a/apps/contacts/js/jquery.combobox.js +++ b/apps/contacts/js/jquery.combobox.js @@ -11,7 +11,6 @@ editable: true }, _create: function() { - //console.log('_create: ' + this.options['id']); var self = this, select = this.element.hide(), selected = select.children(':selected'), @@ -112,7 +111,6 @@ $.Widget.prototype.destroy.call( this ); }, value: function(val) { - console.log('combobox.value: ' + val); if(val != undefined) { this.input.val(val); } else { |