From commits-return-1386-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Mon Aug 27 06:01:10 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E4FDD180672 for ; Mon, 27 Aug 2018 06:01:09 +0200 (CEST) Received: (qmail 21727 invoked by uid 500); 27 Aug 2018 04:01:09 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 21718 invoked by uid 99); 27 Aug 2018 04:01:08 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Aug 2018 04:01:08 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 673FC82123; Mon, 27 Aug 2018 04:01:08 +0000 (UTC) Date: Mon, 27 Aug 2018 04:01:08 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: remove unneeded console.log (#5738) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153534246819.18132.10503976823586451649@gitbox.apache.org> From: maximebeauchemin@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 52b99dff7838868ff721c8a22081092f24bee3ef X-Git-Newrev: f5cc98351e2c5499b74be599804836c7e91b2924 X-Git-Rev: f5cc98351e2c5499b74be599804836c7e91b2924 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-superset.git The following commit(s) were added to refs/heads/master by this push: new f5cc983 remove unneeded console.log (#5738) f5cc983 is described below commit f5cc98351e2c5499b74be599804836c7e91b2924 Author: Hugh A. Miles II AuthorDate: Sun Aug 26 21:01:05 2018 -0700 remove unneeded console.log (#5738) --- superset/assets/vendor/parallel_coordinates/d3.parcoords.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/superset/assets/vendor/parallel_coordinates/d3.parcoords.js b/superset/assets/vendor/parallel_coordinates/d3.parcoords.js index 04095f1..77f5996 100644 --- a/superset/assets/vendor/parallel_coordinates/d3.parcoords.js +++ b/superset/assets/vendor/parallel_coordinates/d3.parcoords.js @@ -1775,8 +1775,6 @@ module.exports = function(config) { arc.p2[0] = Math.min(Math.max(arc.minX + 1, ev.x - __.margin.left), arc.maxX); arc.p2[1] = Math.min(Math.max(arc.minY, ev.y - __.margin.top), arc.maxY); arc.p3 = arc.p2.slice(); - // console.log(arcs.angle(arcs.active)); - // console.log(signedAngle(arcs.unsignedAngle(arcs.active))); drawStrum(arc, 1); }; }