From: Laury GvR Date: Tue, 18 Sep 2018 19:54:02 +0000 (-0400) Subject: Removed console logs, changed button text X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=cbfbcf23ce945f1a45364b34d4b29eaf99314514;p=WP-Plugins%2Fglm-member-db-contacts.git Removed console logs, changed button text --- diff --git a/views/admin/contacts/edit.html b/views/admin/contacts/edit.html index d6f29cf..65c8caf 100644 --- a/views/admin/contacts/edit.html +++ b/views/admin/contacts/edit.html @@ -1065,10 +1065,8 @@ function fullProfileCheck(target) { if ($("#glm-contact-info-profile > .glm-contact-content-toggle.selected").length == $("#glm-contact-info-profile > .glm-contact-content-toggle").length) { $("#glm-contact-fullprofile-toggle").addClass("selected"); - console.log("Select!"); } else { $("#glm-contact-fullprofile-toggle").removeClass("selected"); - console.log("UNSelect!"); } } @@ -1079,10 +1077,12 @@ $(".glm-contact-content-data").slideUp(175, "swing", function() {}); $(".glm-contact-content-toggle").removeClass("selected"); $(this).toggleClass("selected"); + $(this).text("Expand All"); } else { $(".glm-contact-content-data").not($(this)).slideDown(350, "swing", function() {}); $(".glm-contact-content-toggle").addClass("selected"); $(this).toggleClass("selected"); + $(this).text("Collapse All"); } });