Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2011-09-29 01:16:32 +0400
committerBart Visscher <bartv@thisnet.nl>2011-09-29 01:17:26 +0400
commit5875b50de055138d62252075d19e242eac608d24 (patch)
treeddafcf176e6b516b03ec5378f9ce34376fe34ec7 /apps/contacts
parent7c20aea96cd82478d86ac2830257d23b3b422c5e (diff)
Use .empty function instead of .html("")
Diffstat (limited to 'apps/contacts')
-rw-r--r--apps/contacts/js/interface.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/js/interface.js b/apps/contacts/js/interface.js
index 66ee6772198..3ec84a3c8ba 100644
--- a/apps/contacts/js/interface.js
+++ b/apps/contacts/js/interface.js
@@ -34,7 +34,7 @@ $(document).ready(function(){
if(jsondata.status == 'success'){
$('#leftcontent [data-id="'+jsondata.data.id+'"]').remove();
$('#rightcontent').data('id','');
- $('#rightcontent').html('');
+ $('#rightcontent').empty();
}
else{
alert(jsondata.data.message);