From e590e481f16d7b0e294ee444d79ec05ea1105176 Mon Sep 17 00:00:00 2001 From: Gordon Woodhull Date: Thu, 8 Dec 2016 12:43:35 -0500 Subject: [PATCH] fix one link for #1231 let's try to automate the rest --- src/bar-chart.js | 2 +- src/base-mixin.js | 2 +- src/box-plot.js | 2 +- src/bubble-chart.js | 2 +- src/bubble-overlay.js | 2 +- src/composite-chart.js | 2 +- src/data-count.js | 2 +- src/data-grid.js | 2 +- src/data-table.js | 2 +- src/geo-choropleth-chart.js | 2 +- src/heatmap.js | 2 +- src/line-chart.js | 2 +- src/number-display.js | 2 +- src/pie-chart.js | 2 +- src/row-chart.js | 2 +- src/scatter-plot.js | 2 +- src/series-chart.js | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/bar-chart.js b/src/bar-chart.js index ce0986b4f..a413a65cc 100644 --- a/src/bar-chart.js +++ b/src/bar-chart.js @@ -16,7 +16,7 @@ * // create a sub-chart under a composite parent chart * var chart3 = dc.barChart(compositeChart); * @param {String|node|d3.selection|dc.compositeChart} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} * specifying a dom block element such as a div; or a dom element or d3 selection. If the bar * chart is a sub-chart in a {@link dc.compositeChart Composite Chart} then pass in the parent * composite chart instance instead. diff --git a/src/base-mixin.js b/src/base-mixin.js index 91dd2c2c1..4111670cd 100644 --- a/src/base-mixin.js +++ b/src/base-mixin.js @@ -383,7 +383,7 @@ dc.baseMixin = function (_chart) { /** * Set the root SVGElement to either be an existing chart's root; or any valid [d3 single - * selector](https://github.com/mbostock/d3/wiki/Selections#selecting-elements) specifying a dom + * selector](https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements) specifying a dom * block element such as a div; or a dom element or d3 selection. Optionally registers the chart * within the chartGroup. This class is called internally on chart initialization, but be called * again to relocate the chart. However, it will orphan any previously created SVGElements. diff --git a/src/box-plot.js b/src/box-plot.js index 42853d1c1..ad4051870 100644 --- a/src/box-plot.js +++ b/src/box-plot.js @@ -14,7 +14,7 @@ * // create a box plot under #chart-container2 element using chart group A * var boxPlot2 = dc.boxPlot('#chart-container2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/bubble-chart.js b/src/bubble-chart.js index 4083a8000..88b8e7645 100644 --- a/src/bubble-chart.js +++ b/src/bubble-chart.js @@ -19,7 +19,7 @@ * // create a bubble chart under #chart-container2 element using chart group A * var bubbleChart2 = dc.bubbleChart('#chart-container2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/bubble-overlay.js b/src/bubble-overlay.js index cde8617eb..68281c1d6 100644 --- a/src/bubble-overlay.js +++ b/src/bubble-overlay.js @@ -16,7 +16,7 @@ * // create a bubble overlay chart on top of the '#chart-container2 svg' element using chart group A * var bubbleChart2 = dc.compositeChart('#chart-container2', 'chartGroupA').svg(d3.select('#chart-container2 svg')); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/composite-chart.js b/src/composite-chart.js index 16b63c2c2..58a2d5534 100644 --- a/src/composite-chart.js +++ b/src/composite-chart.js @@ -11,7 +11,7 @@ * // create a composite chart under #chart-container2 element using chart group A * var compositeChart2 = dc.compositeChart('#chart-container2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/data-count.js b/src/data-count.js index 822a92f63..343cac6ff 100644 --- a/src/data-count.js +++ b/src/data-count.js @@ -23,7 +23,7 @@ * .dimension(ndx) * .group(all); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/data-grid.js b/src/data-grid.js index 718ef13f4..1a3df89ba 100644 --- a/src/data-grid.js +++ b/src/data-grid.js @@ -12,7 +12,7 @@ * @memberof dc * @mixes dc.baseMixin * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/data-table.js b/src/data-table.js index 5a9c0f6f7..8c2c3f7f9 100644 --- a/src/data-table.js +++ b/src/data-table.js @@ -19,7 +19,7 @@ * @memberof dc * @mixes dc.baseMixin * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/geo-choropleth-chart.js b/src/geo-choropleth-chart.js index d5c846a1d..cbe655ac4 100644 --- a/src/geo-choropleth-chart.js +++ b/src/geo-choropleth-chart.js @@ -15,7 +15,7 @@ * // create a choropleth chart under '#us-chart2' element using chart group A * var chart2 = dc.compositeChart('#us-chart2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/heatmap.js b/src/heatmap.js index 2856a85fb..8a547e111 100644 --- a/src/heatmap.js +++ b/src/heatmap.js @@ -11,7 +11,7 @@ * // create a heat map under #chart-container2 element using chart group A * var heatMap2 = dc.heatMap('#chart-container2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/line-chart.js b/src/line-chart.js index 14ce206e8..0b1a71cf1 100644 --- a/src/line-chart.js +++ b/src/line-chart.js @@ -16,7 +16,7 @@ * // create a sub-chart under a composite parent chart * var chart3 = dc.lineChart(compositeChart); * @param {String|node|d3.selection|dc.compositeChart} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} * specifying a dom block element such as a div; or a dom element or d3 selection. If the line * chart is a sub-chart in a {@link dc.compositeChart Composite Chart} then pass in the parent * composite chart instance instead. diff --git a/src/number-display.js b/src/number-display.js index 9327c518c..2c87ae2fb 100644 --- a/src/number-display.js +++ b/src/number-display.js @@ -9,7 +9,7 @@ * // create a number display under #chart-container1 element using the default global chart group * var display1 = dc.numberDisplay('#chart-container1'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/pie-chart.js b/src/pie-chart.js index 7d1307483..0d9754a18 100644 --- a/src/pie-chart.js +++ b/src/pie-chart.js @@ -17,7 +17,7 @@ * // create a pie chart under #chart-container2 element using chart group A * var chart2 = dc.pieChart('#chart-container2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/row-chart.js b/src/row-chart.js index e1e9edce9..4eba31a75 100644 --- a/src/row-chart.js +++ b/src/row-chart.js @@ -15,7 +15,7 @@ * // create a row chart under #chart-container2 element using chart group A * var chart2 = dc.rowChart('#chart-container2', 'chartGroupA'); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/scatter-plot.js b/src/scatter-plot.js index b4f5cc63c..aa1fd6829 100644 --- a/src/scatter-plot.js +++ b/src/scatter-plot.js @@ -15,7 +15,7 @@ * // create a sub-chart under a composite parent chart * var chart3 = dc.scatterPlot(compositeChart); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group. diff --git a/src/series-chart.js b/src/series-chart.js index 4c4442227..c03b3bfea 100644 --- a/src/series-chart.js +++ b/src/series-chart.js @@ -14,7 +14,7 @@ * // create a series chart under #chart-container2 element using chart group A * var seriesChart2 = dc.seriesChart("#chart-container2", "chartGroupA"); * @param {String|node|d3.selection} parent - Any valid - * {@link https://github.com/mbostock/d3/wiki/Selections#selecting-elements d3 single selector} specifying + * {@link https://github.com/d3/d3-3.x-api-reference/blob/master/Selections.md#selecting-elements d3 single selector} specifying * a dom block element such as a div; or a dom element or d3 selection. * @param {String} [chartGroup] - The name of the chart group this chart instance should be placed in. * Interaction with a chart will only trigger events and redraws within the chart's group.