Commit: 50ef2f610f4443f17318bed25cab115bdff36768 Author: Anatol Belski <a...@php.net> Fri, 11 Nov 2016 19:19:09 +0100 Parents: c665e91b8cf2d152e599ae4b1834aeb20046952e Branches: master
Link: http://git.php.net/?p=web/qa.git;a=commitdiff;h=50ef2f610f4443f17318bed25cab115bdff36768 Log: remove debug out Changed paths: M pulls/pullrequests.js Diff: diff --git a/pulls/pullrequests.js b/pulls/pullrequests.js index 17c15a5..6e20c6d 100644 --- a/pulls/pullrequests.js +++ b/pulls/pullrequests.js @@ -158,9 +158,6 @@ function loadRepo(repo, url) { success: function(issue_labels) { $("#loading").hide(); - console.log(repo_labels.data); - console.log(issue_labels.data); - var dia = $('<div></div>').html($("#labelsDialogTemplate").render({})) .dialog({title: that.data("number")+': '+that.data("title")+' ('+that.data("state")+')' }); var ul_el = $("dd", dia).append('<ul style="list-style: none;">'); @@ -199,7 +196,6 @@ function loadRepo(repo, url) { $("button", dia).click(function(r, n, dia) { return function(ev) { updateRepo(r, n, dia); ev.preventDefault();}}(repo, $(this).data("number"), dia) ); var labels = $('[id^="pr-' + $(this).data("number") + '-label"]'); - console.log(labels); if (0 == labels.length) { $("span", dia).append("<span>Unchanged</span>"); } else { -- PHP Quality Assurance Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php