From b2de5cb380c4bcdd0a18c42c9aafc9f7ce75b391 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 20 Dec 2012 22:58:46 +0100 Subject: [PATCH] Contacts: self -> this --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index f68db4ff..b786821c 100644 --- a/js/app.js +++ b/js/app.js @@ -1818,7 +1818,7 @@ OC.Contacts = OC.Contacts || { }, setAllChecked: function(checked) { var selector = checked ? 'input:checkbox:visible:not(checked)' : 'input:checkbox:visible:checked'; - $.each(self.$contactList.find(selector), function() { + $.each(this.$contactList.find(selector), function() { $(this).prop('checked', checked); }); },