From ee1aca8f3b79c9af85f1df0b80d07edf59222896 Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 27 Jan 2021 09:12:49 -0500 Subject: [PATCH 1/6] modify header_src to remove redundant headers --- tasks/header_src.js | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/tasks/header_src.js b/tasks/header_src.js index 8fa4cfe251b..1507c8fae44 100644 --- a/tasks/header_src.js +++ b/tasks/header_src.js @@ -28,38 +28,33 @@ function updateHeadersInSrcAndLibFiles() { throw new Error(file + ' : has no header information.'); } - // if header and license are the same, do nothing - if(isCorrect(header)) return; - - // if header and license only differ by date, update header - else if(hasWrongDate(header)) { + // if header and license are the same remove the header! + if(isRedundant(header)) { var codeLines = code.split('\n'); codeLines.splice(header.loc.start.line - 1, header.loc.end.line); - var newCode = licenseSrc + '\n' + codeLines.join('\n'); + var i; + for(i = 0; i < codeLines.length; i++) { + if(codeLines[i]) { + break; + } + } + + var newCode = codeLines.splice(i).join('\n'); common.writeFile(file, newCode); - } else { - // otherwise, throw an error - throw new Error(file + ' : has wrong header information.'); } }); }); }); - function isCorrect(header) { + function isRedundant(header) { return ( header.value.replace(/\s+$/gm, '') === licenseStr.replace(/\s+$/gm, '') ); } - - function hasWrongDate(header) { - var regex = /Copyright 20[0-9][0-9]-20[0-9][0-9]/g; - - return (header.value.replace(regex, '') === licenseStr.replace(regex, '')); - } } updateHeadersInSrcAndLibFiles(); From 4ec7b088f3e0cec40f4440cfc88a71a91299782f Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 27 Jan 2021 09:23:01 -0500 Subject: [PATCH 2/6] delete compress_headers browserify transform - no longer needed --- package.json | 1 - tasks/compress_headers.js | 27 --------------------------- 2 files changed, 28 deletions(-) delete mode 100644 tasks/compress_headers.js diff --git a/package.json b/package.json index 6b67557273b..ff0eeadc48e 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,6 @@ "browserify": { "transform": [ "glslify", - "./tasks/compress_headers.js", "./tasks/compress_attributes.js" ] }, diff --git a/tasks/compress_headers.js b/tasks/compress_headers.js deleted file mode 100644 index 9f06366c202..00000000000 --- a/tasks/compress_headers.js +++ /dev/null @@ -1,27 +0,0 @@ -var through = require('through2'); - -var licenseSrc = require('./util/constants').licenseSrc - .replace(/\//g, '\\/') - .replace(/\*/g, '\\*') - .replace(/\n/g, '[^]'); - -/** - * Browserify transform that strips redundant plotly.js Copyright comments out - * of the plotly.js bundles - */ - -var WHITESPACE_BEFORE = '\\s*'; - -module.exports = function() { - var allChunks = []; - return through(function(chunk, enc, next) { - allChunks.push(chunk); - next(); - }, function(done) { - var str = Buffer.concat(allChunks).toString('utf-8'); - this.push( - str.replace(new RegExp(WHITESPACE_BEFORE + licenseSrc, 'g'), '') - ); - done(); - }); -}; From 74e7fd1651f6fc8dd486f689966b7a2502cd3db8 Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 27 Jan 2021 09:33:55 -0500 Subject: [PATCH 3/6] remove headers from src and lib --- lib/aggregate.js | 8 -------- lib/bar.js | 8 -------- lib/barpolar.js | 8 -------- lib/box.js | 8 -------- lib/calendars.js | 8 -------- lib/candlestick.js | 8 -------- lib/carpet.js | 8 -------- lib/choropleth.js | 8 -------- lib/choroplethmapbox.js | 8 -------- lib/cone.js | 8 -------- lib/contour.js | 8 -------- lib/contourcarpet.js | 8 -------- lib/core.js | 8 -------- lib/densitymapbox.js | 8 -------- lib/filter.js | 8 -------- lib/funnel.js | 8 -------- lib/funnelarea.js | 8 -------- lib/groupby.js | 8 -------- lib/heatmap.js | 8 -------- lib/heatmapgl.js | 8 -------- lib/histogram.js | 8 -------- lib/histogram2d.js | 8 -------- lib/histogram2dcontour.js | 8 -------- lib/image.js | 8 -------- lib/index-basic.js | 8 -------- lib/index-cartesian.js | 8 -------- lib/index-finance.js | 8 -------- lib/index-geo.js | 8 -------- lib/index-gl2d.js | 8 -------- lib/index-gl3d.js | 8 -------- lib/index-mapbox.js | 8 -------- lib/index-strict.js | 8 -------- lib/index.js | 8 -------- lib/indicator.js | 8 -------- lib/isosurface.js | 8 -------- lib/locales/af.js | 8 -------- lib/locales/am.js | 8 -------- lib/locales/ar-dz.js | 8 -------- lib/locales/ar-eg.js | 8 -------- lib/locales/ar.js | 8 -------- lib/locales/az.js | 8 -------- lib/locales/bg.js | 8 -------- lib/locales/bs.js | 8 -------- lib/locales/ca.js | 8 -------- lib/locales/cs.js | 8 -------- lib/locales/cy.js | 8 -------- lib/locales/da.js | 8 -------- lib/locales/de-ch.js | 8 -------- lib/locales/de.js | 8 -------- lib/locales/el.js | 8 -------- lib/locales/eo.js | 8 -------- lib/locales/es-ar.js | 8 -------- lib/locales/es-pe.js | 8 -------- lib/locales/es.js | 8 -------- lib/locales/et.js | 8 -------- lib/locales/eu.js | 8 -------- lib/locales/fa.js | 8 -------- lib/locales/fi.js | 8 -------- lib/locales/fo.js | 8 -------- lib/locales/fr-ch.js | 8 -------- lib/locales/fr.js | 8 -------- lib/locales/gl.js | 8 -------- lib/locales/gu.js | 8 -------- lib/locales/he.js | 8 -------- lib/locales/hi-in.js | 8 -------- lib/locales/hr.js | 8 -------- lib/locales/hu.js | 8 -------- lib/locales/hy.js | 8 -------- lib/locales/id.js | 8 -------- lib/locales/is.js | 8 -------- lib/locales/it.js | 8 -------- lib/locales/ja.js | 8 -------- lib/locales/ka.js | 8 -------- lib/locales/km.js | 8 -------- lib/locales/ko.js | 8 -------- lib/locales/lt.js | 8 -------- lib/locales/lv.js | 8 -------- lib/locales/me-me.js | 8 -------- lib/locales/me.js | 8 -------- lib/locales/mk.js | 8 -------- lib/locales/ml.js | 8 -------- lib/locales/ms.js | 8 -------- lib/locales/mt.js | 8 -------- lib/locales/nl-be.js | 8 -------- lib/locales/nl.js | 8 -------- lib/locales/no.js | 8 -------- lib/locales/pa.js | 8 -------- lib/locales/pl.js | 8 -------- lib/locales/pt-br.js | 8 -------- lib/locales/pt-pt.js | 8 -------- lib/locales/rm.js | 8 -------- lib/locales/ro.js | 8 -------- lib/locales/ru.js | 8 -------- lib/locales/sk.js | 8 -------- lib/locales/sl.js | 8 -------- lib/locales/sq.js | 8 -------- lib/locales/sr-sr.js | 8 -------- lib/locales/sr.js | 8 -------- lib/locales/sv.js | 8 -------- lib/locales/sw.js | 8 -------- lib/locales/ta.js | 8 -------- lib/locales/th.js | 8 -------- lib/locales/tr.js | 8 -------- lib/locales/tt.js | 8 -------- lib/locales/uk.js | 8 -------- lib/locales/ur.js | 8 -------- lib/locales/vi.js | 8 -------- lib/locales/zh-cn.js | 8 -------- lib/locales/zh-hk.js | 8 -------- lib/locales/zh-tw.js | 8 -------- lib/mesh3d.js | 8 -------- lib/ohlc.js | 8 -------- lib/parcats.js | 8 -------- lib/parcoords.js | 8 -------- lib/pie.js | 8 -------- lib/pointcloud.js | 8 -------- lib/register_extra.js | 8 -------- lib/sankey.js | 8 -------- lib/scatter.js | 8 -------- lib/scatter3d.js | 8 -------- lib/scattercarpet.js | 8 -------- lib/scattergeo.js | 8 -------- lib/scattergl.js | 8 -------- lib/scattermapbox.js | 8 -------- lib/scatterpolar.js | 8 -------- lib/scatterpolargl.js | 8 -------- lib/scatterternary.js | 8 -------- lib/sort.js | 8 -------- lib/splom.js | 8 -------- lib/streamtube.js | 8 -------- lib/sunburst.js | 8 -------- lib/surface.js | 8 -------- lib/table.js | 8 -------- lib/treemap.js | 8 -------- lib/violin.js | 8 -------- lib/volume.js | 8 -------- lib/waterfall.js | 8 -------- src/assets/geo_assets.js | 8 -------- src/components/annotations/arrow_paths.js | 8 -------- src/components/annotations/attributes.js | 8 -------- src/components/annotations/calc_autorange.js | 9 --------- src/components/annotations/click.js | 8 -------- src/components/annotations/common_defaults.js | 8 -------- src/components/annotations/convert_coords.js | 9 --------- src/components/annotations/defaults.js | 9 --------- src/components/annotations/draw.js | 8 -------- src/components/annotations/draw_arrow_head.js | 9 --------- src/components/annotations/index.js | 9 --------- src/components/annotations3d/attributes.js | 9 --------- src/components/annotations3d/convert.js | 8 -------- src/components/annotations3d/defaults.js | 8 -------- src/components/annotations3d/draw.js | 8 -------- src/components/annotations3d/index.js | 8 -------- src/components/calendars/calendars.js | 8 -------- src/components/calendars/index.js | 8 -------- src/components/color/attributes.js | 8 -------- src/components/color/index.js | 9 --------- src/components/colorbar/attributes.js | 8 -------- src/components/colorbar/constants.js | 8 -------- src/components/colorbar/defaults.js | 9 --------- src/components/colorbar/draw.js | 8 -------- src/components/colorbar/has_colorbar.js | 9 --------- src/components/colorbar/index.js | 8 -------- src/components/colorscale/attributes.js | 8 -------- src/components/colorscale/calc.js | 8 -------- src/components/colorscale/cross_trace_defaults.js | 8 -------- src/components/colorscale/defaults.js | 8 -------- src/components/colorscale/helpers.js | 8 -------- src/components/colorscale/index.js | 8 -------- src/components/colorscale/layout_attributes.js | 8 -------- src/components/colorscale/layout_defaults.js | 8 -------- src/components/colorscale/scales.js | 8 -------- src/components/dragelement/align.js | 9 --------- src/components/dragelement/cursor.js | 9 --------- src/components/dragelement/helpers.js | 8 -------- src/components/dragelement/index.js | 8 -------- src/components/dragelement/unhover.js | 8 -------- src/components/drawing/attributes.js | 9 --------- src/components/drawing/index.js | 9 --------- src/components/drawing/symbol_defs.js | 9 --------- src/components/errorbars/attributes.js | 8 -------- src/components/errorbars/calc.js | 8 -------- src/components/errorbars/compute_error.js | 9 --------- src/components/errorbars/defaults.js | 8 -------- src/components/errorbars/index.js | 8 -------- src/components/errorbars/plot.js | 9 --------- src/components/errorbars/style.js | 9 --------- src/components/fx/attributes.js | 8 -------- src/components/fx/calc.js | 8 -------- src/components/fx/click.js | 8 -------- src/components/fx/constants.js | 8 -------- src/components/fx/defaults.js | 8 -------- src/components/fx/helpers.js | 8 -------- src/components/fx/hover.js | 8 -------- src/components/fx/hoverlabel_defaults.js | 8 -------- src/components/fx/hovermode_defaults.js | 8 -------- src/components/fx/index.js | 8 -------- src/components/fx/layout_attributes.js | 8 -------- src/components/fx/layout_defaults.js | 8 -------- src/components/fx/layout_global_defaults.js | 8 -------- src/components/grid/index.js | 8 -------- src/components/images/attributes.js | 8 -------- src/components/images/convert_coords.js | 9 --------- src/components/images/defaults.js | 8 -------- src/components/images/draw.js | 8 -------- src/components/images/index.js | 8 -------- src/components/legend/attributes.js | 8 -------- src/components/legend/constants.js | 8 -------- src/components/legend/defaults.js | 8 -------- src/components/legend/draw.js | 8 -------- src/components/legend/get_legend_data.js | 8 -------- src/components/legend/handle_click.js | 8 -------- src/components/legend/helpers.js | 9 --------- src/components/legend/index.js | 9 --------- src/components/legend/style.js | 8 -------- src/components/modebar/buttons.js | 8 -------- src/components/modebar/index.js | 9 --------- src/components/modebar/manage.js | 9 --------- src/components/modebar/modebar.js | 9 --------- src/components/rangeselector/attributes.js | 8 -------- src/components/rangeselector/constants.js | 8 -------- src/components/rangeselector/defaults.js | 8 -------- src/components/rangeselector/draw.js | 8 -------- src/components/rangeselector/get_update_object.js | 9 --------- src/components/rangeselector/index.js | 8 -------- src/components/rangeslider/attributes.js | 8 -------- src/components/rangeslider/calc_autorange.js | 8 -------- src/components/rangeslider/constants.js | 8 -------- src/components/rangeslider/defaults.js | 8 -------- src/components/rangeslider/draw.js | 8 -------- src/components/rangeslider/helpers.js | 8 -------- src/components/rangeslider/index.js | 8 -------- src/components/rangeslider/oppaxis_attributes.js | 8 -------- src/components/shapes/attributes.js | 8 -------- src/components/shapes/calc_autorange.js | 8 -------- src/components/shapes/constants.js | 9 --------- src/components/shapes/defaults.js | 9 --------- src/components/shapes/draw.js | 9 --------- src/components/shapes/draw_newshape/attributes.js | 8 -------- src/components/shapes/draw_newshape/constants.js | 8 -------- src/components/shapes/draw_newshape/defaults.js | 9 --------- src/components/shapes/draw_newshape/display_outlines.js | 9 --------- src/components/shapes/draw_newshape/helpers.js | 9 --------- src/components/shapes/draw_newshape/newshapes.js | 9 --------- src/components/shapes/helpers.js | 9 --------- src/components/shapes/index.js | 9 --------- src/components/sliders/attributes.js | 8 -------- src/components/sliders/constants.js | 9 --------- src/components/sliders/defaults.js | 8 -------- src/components/sliders/draw.js | 8 -------- src/components/sliders/index.js | 8 -------- src/components/titles/index.js | 9 --------- src/components/updatemenus/attributes.js | 8 -------- src/components/updatemenus/constants.js | 9 --------- src/components/updatemenus/defaults.js | 8 -------- src/components/updatemenus/draw.js | 9 --------- src/components/updatemenus/index.js | 8 -------- src/components/updatemenus/scrollbox.js | 8 -------- src/constants/alignment.js | 8 -------- src/constants/axis_placeable_objects.js | 9 --------- src/constants/delta.js | 8 -------- src/constants/docs.js | 8 -------- src/constants/filter_ops.js | 8 -------- src/constants/gl3d_dashes.js | 9 --------- src/constants/gl3d_markers.js | 9 --------- src/constants/interactions.js | 8 -------- src/constants/numerical.js | 8 -------- src/constants/xmlns_namespaces.js | 9 --------- src/core.js | 8 -------- src/fonts/mathjax_config.js | 8 -------- src/fonts/ploticon.js | 8 -------- src/lib/anchor_utils.js | 9 --------- src/lib/angles.js | 8 -------- src/lib/array.js | 8 -------- src/lib/clean_number.js | 9 --------- src/lib/clear_gl_canvases.js | 8 -------- src/lib/clear_responsive.js | 8 -------- src/lib/coerce.js | 8 -------- src/lib/dates.js | 9 --------- src/lib/dom.js | 8 -------- src/lib/events.js | 9 --------- src/lib/extend.js | 9 --------- src/lib/filter_unique.js | 9 --------- src/lib/filter_visible.js | 8 -------- src/lib/geo_location_utils.js | 8 -------- src/lib/geojson_utils.js | 9 --------- src/lib/geometry2d.js | 8 -------- src/lib/gl_format_color.js | 8 -------- src/lib/gup.js | 8 -------- src/lib/identity.js | 8 -------- src/lib/increment.js | 9 --------- src/lib/index.js | 8 -------- src/lib/is_plain_object.js | 9 --------- src/lib/keyed_container.js | 8 -------- src/lib/localize.js | 9 --------- src/lib/loggers.js | 8 -------- src/lib/make_trace_groups.js | 8 -------- src/lib/matrix.js | 9 --------- src/lib/mod.js | 8 -------- src/lib/nested_property.js | 9 --------- src/lib/noop.js | 8 -------- src/lib/notifier.js | 9 --------- src/lib/override_cursor.js | 9 --------- src/lib/polygon.js | 9 --------- src/lib/prepare_regl.js | 8 -------- src/lib/preserve_drawing_buffer.js | 8 -------- src/lib/push_unique.js | 8 -------- src/lib/queue.js | 8 -------- src/lib/regex.js | 8 -------- src/lib/relative_attr.js | 9 --------- src/lib/relink_private.js | 9 --------- src/lib/search.js | 9 --------- src/lib/setcursor.js | 9 --------- src/lib/show_no_webgl_msg.js | 9 --------- src/lib/stats.js | 9 --------- src/lib/str2rgbarray.js | 9 --------- src/lib/svg_text_utils.js | 9 --------- src/lib/throttle.js | 8 -------- src/lib/to_log_range.js | 8 -------- src/lib/topojson_utils.js | 8 -------- src/locale-en-us.js | 8 -------- src/locale-en.js | 8 -------- src/plot_api/container_array_match.js | 9 --------- src/plot_api/edit_types.js | 8 -------- src/plot_api/helpers.js | 8 -------- src/plot_api/index.js | 8 -------- src/plot_api/manage_arrays.js | 9 --------- src/plot_api/plot_api.js | 8 -------- src/plot_api/plot_config.js | 8 -------- src/plot_api/plot_schema.js | 8 -------- src/plot_api/plot_template.js | 9 --------- src/plot_api/subroutines.js | 8 -------- src/plot_api/template_api.js | 9 --------- src/plot_api/to_image.js | 8 -------- src/plot_api/validate.js | 8 -------- src/plots/animation_attributes.js | 8 -------- src/plots/array_container_defaults.js | 8 -------- src/plots/attributes.js | 8 -------- src/plots/cartesian/align_period.js | 8 -------- src/plots/cartesian/attributes.js | 8 -------- src/plots/cartesian/autorange.js | 8 -------- src/plots/cartesian/axes.js | 8 -------- src/plots/cartesian/axis_autotype.js | 9 --------- src/plots/cartesian/axis_defaults.js | 8 -------- src/plots/cartesian/axis_ids.js | 8 -------- src/plots/cartesian/category_order_defaults.js | 8 -------- src/plots/cartesian/clean_ticks.js | 8 -------- src/plots/cartesian/constants.js | 8 -------- src/plots/cartesian/constraints.js | 8 -------- src/plots/cartesian/dragbox.js | 8 -------- src/plots/cartesian/graph_interact.js | 9 --------- src/plots/cartesian/handle_outline.js | 9 --------- src/plots/cartesian/helpers.js | 9 --------- src/plots/cartesian/include_components.js | 9 --------- src/plots/cartesian/index.js | 9 --------- src/plots/cartesian/layout_attributes.js | 8 -------- src/plots/cartesian/layout_defaults.js | 9 --------- src/plots/cartesian/line_grid_defaults.js | 8 -------- src/plots/cartesian/position_defaults.js | 9 --------- src/plots/cartesian/scale_zoom.js | 9 --------- src/plots/cartesian/select.js | 9 --------- src/plots/cartesian/set_convert.js | 8 -------- src/plots/cartesian/tick_label_defaults.js | 9 --------- src/plots/cartesian/tick_mark_defaults.js | 9 --------- src/plots/cartesian/tick_value_defaults.js | 8 -------- src/plots/cartesian/transition_axes.js | 8 -------- src/plots/cartesian/type_defaults.js | 8 -------- src/plots/command.js | 8 -------- src/plots/domain.js | 8 -------- src/plots/font_attributes.js | 8 -------- src/plots/frame_attributes.js | 8 -------- src/plots/geo/constants.js | 8 -------- src/plots/geo/geo.js | 8 -------- src/plots/geo/index.js | 8 -------- src/plots/geo/layout_attributes.js | 8 -------- src/plots/geo/layout_defaults.js | 8 -------- src/plots/geo/projections.js | 8 -------- src/plots/geo/zoom.js | 9 --------- src/plots/get_data.js | 8 -------- src/plots/gl2d/camera.js | 9 --------- src/plots/gl2d/convert.js | 9 --------- src/plots/gl2d/index.js | 9 --------- src/plots/gl2d/scene2d.js | 9 --------- src/plots/gl3d/index.js | 9 --------- src/plots/gl3d/layout/attributes.js | 8 -------- src/plots/gl3d/layout/axis_attributes.js | 8 -------- src/plots/gl3d/layout/axis_defaults.js | 9 --------- src/plots/gl3d/layout/convert.js | 8 -------- src/plots/gl3d/layout/defaults.js | 9 --------- src/plots/gl3d/layout/layout_attributes.js | 9 --------- src/plots/gl3d/layout/spikes.js | 9 --------- src/plots/gl3d/layout/tick_marks.js | 8 -------- src/plots/gl3d/project.js | 9 --------- src/plots/gl3d/scene.js | 9 --------- src/plots/gl3d/zip3.js | 8 -------- src/plots/layout_attributes.js | 8 -------- src/plots/mapbox/constants.js | 8 -------- src/plots/mapbox/convert_text_opts.js | 9 --------- src/plots/mapbox/index.js | 8 -------- src/plots/mapbox/layers.js | 8 -------- src/plots/mapbox/layout_attributes.js | 8 -------- src/plots/mapbox/layout_defaults.js | 8 -------- src/plots/mapbox/mapbox.js | 8 -------- src/plots/pad_attributes.js | 8 -------- src/plots/plots.js | 8 -------- src/plots/polar/constants.js | 8 -------- src/plots/polar/helpers.js | 8 -------- src/plots/polar/index.js | 8 -------- src/plots/polar/layout_attributes.js | 8 -------- src/plots/polar/layout_defaults.js | 8 -------- src/plots/polar/polar.js | 8 -------- src/plots/polar/set_convert.js | 8 -------- src/plots/subplot_defaults.js | 9 --------- src/plots/template_attributes.js | 8 -------- src/plots/ternary/index.js | 9 --------- src/plots/ternary/layout_attributes.js | 8 -------- src/plots/ternary/layout_defaults.js | 8 -------- src/plots/ternary/ternary.js | 9 --------- src/registry.js | 8 -------- src/snapshot/cloneplot.js | 8 -------- src/snapshot/download.js | 8 -------- src/snapshot/filesaver.js | 8 -------- src/snapshot/helpers.js | 8 -------- src/snapshot/index.js | 9 --------- src/snapshot/svgtoimg.js | 8 -------- src/snapshot/toimage.js | 8 -------- src/snapshot/tosvg.js | 9 --------- src/traces/bar/arrays_to_calcdata.js | 8 -------- src/traces/bar/attributes.js | 8 -------- src/traces/bar/calc.js | 8 -------- src/traces/bar/constants.js | 9 --------- src/traces/bar/cross_trace_calc.js | 8 -------- src/traces/bar/defaults.js | 8 -------- src/traces/bar/event_data.js | 8 -------- src/traces/bar/helpers.js | 8 -------- src/traces/bar/hover.js | 9 --------- src/traces/bar/index.js | 8 -------- src/traces/bar/layout_attributes.js | 8 -------- src/traces/bar/layout_defaults.js | 8 -------- src/traces/bar/plot.js | 8 -------- src/traces/bar/select.js | 8 -------- src/traces/bar/sieve.js | 8 -------- src/traces/bar/style.js | 8 -------- src/traces/bar/style_defaults.js | 8 -------- src/traces/bar/uniform_text.js | 8 -------- src/traces/barpolar/attributes.js | 8 -------- src/traces/barpolar/calc.js | 8 -------- src/traces/barpolar/defaults.js | 8 -------- src/traces/barpolar/hover.js | 8 -------- src/traces/barpolar/index.js | 8 -------- src/traces/barpolar/layout_attributes.js | 8 -------- src/traces/barpolar/layout_defaults.js | 8 -------- src/traces/barpolar/plot.js | 8 -------- src/traces/box/attributes.js | 8 -------- src/traces/box/calc.js | 8 -------- src/traces/box/cross_trace_calc.js | 8 -------- src/traces/box/defaults.js | 8 -------- src/traces/box/event_data.js | 8 -------- src/traces/box/hover.js | 8 -------- src/traces/box/index.js | 8 -------- src/traces/box/layout_attributes.js | 8 -------- src/traces/box/layout_defaults.js | 8 -------- src/traces/box/plot.js | 8 -------- src/traces/box/select.js | 8 -------- src/traces/box/style.js | 8 -------- src/traces/candlestick/attributes.js | 9 --------- src/traces/candlestick/calc.js | 8 -------- src/traces/candlestick/defaults.js | 9 --------- src/traces/candlestick/index.js | 8 -------- src/traces/carpet/ab_defaults.js | 8 -------- src/traces/carpet/array_minmax.js | 8 -------- src/traces/carpet/attributes.js | 8 -------- src/traces/carpet/axis_aligned_line.js | 8 -------- src/traces/carpet/axis_attributes.js | 8 -------- src/traces/carpet/axis_defaults.js | 8 -------- src/traces/carpet/calc.js | 8 -------- src/traces/carpet/calc_clippath.js | 9 --------- src/traces/carpet/calc_gridlines.js | 8 -------- src/traces/carpet/calc_labels.js | 8 -------- src/traces/carpet/catmull_rom.js | 8 -------- src/traces/carpet/cheater_basis.js | 8 -------- src/traces/carpet/compute_control_points.js | 8 -------- src/traces/carpet/constants.js | 9 --------- src/traces/carpet/create_i_derivative_evaluator.js | 8 -------- src/traces/carpet/create_j_derivative_evaluator.js | 8 -------- src/traces/carpet/create_spline_evaluator.js | 8 -------- src/traces/carpet/defaults.js | 9 --------- src/traces/carpet/index.js | 8 -------- src/traces/carpet/lookup_carpetid.js | 8 -------- src/traces/carpet/makepath.js | 8 -------- src/traces/carpet/map_1d_array.js | 8 -------- src/traces/carpet/orient_text.js | 9 --------- src/traces/carpet/plot.js | 9 --------- src/traces/carpet/set_convert.js | 8 -------- src/traces/carpet/smooth_fill_2d_array.js | 8 -------- src/traces/carpet/smooth_fill_array.js | 8 -------- src/traces/carpet/xy_defaults.js | 9 --------- src/traces/choropleth/attributes.js | 8 -------- src/traces/choropleth/calc.js | 8 -------- src/traces/choropleth/defaults.js | 8 -------- src/traces/choropleth/event_data.js | 8 -------- src/traces/choropleth/hover.js | 8 -------- src/traces/choropleth/index.js | 8 -------- src/traces/choropleth/plot.js | 8 -------- src/traces/choropleth/select.js | 8 -------- src/traces/choropleth/style.js | 8 -------- src/traces/choroplethmapbox/attributes.js | 8 -------- src/traces/choroplethmapbox/convert.js | 8 -------- src/traces/choroplethmapbox/defaults.js | 8 -------- src/traces/choroplethmapbox/index.js | 8 -------- src/traces/choroplethmapbox/plot.js | 8 -------- src/traces/cone/attributes.js | 8 -------- src/traces/cone/calc.js | 8 -------- src/traces/cone/convert.js | 8 -------- src/traces/cone/defaults.js | 9 --------- src/traces/cone/index.js | 8 -------- src/traces/contour/attributes.js | 8 -------- src/traces/contour/calc.js | 8 -------- src/traces/contour/close_boundaries.js | 8 -------- src/traces/contour/colorbar.js | 8 -------- src/traces/contour/constants.js | 8 -------- src/traces/contour/constraint_defaults.js | 9 --------- src/traces/contour/constraint_mapping.js | 8 -------- src/traces/contour/contours_defaults.js | 8 -------- src/traces/contour/convert_to_constraints.js | 8 -------- src/traces/contour/defaults.js | 8 -------- src/traces/contour/empty_pathinfo.js | 8 -------- src/traces/contour/end_plus.js | 9 --------- src/traces/contour/find_all_paths.js | 8 -------- src/traces/contour/hover.js | 9 --------- src/traces/contour/index.js | 8 -------- src/traces/contour/label_defaults.js | 9 --------- src/traces/contour/make_color_map.js | 8 -------- src/traces/contour/make_crossings.js | 8 -------- src/traces/contour/plot.js | 9 --------- src/traces/contour/set_contours.js | 8 -------- src/traces/contour/style.js | 9 --------- src/traces/contour/style_defaults.js | 9 --------- src/traces/contourcarpet/attributes.js | 8 -------- src/traces/contourcarpet/calc.js | 8 -------- src/traces/contourcarpet/defaults.js | 9 --------- src/traces/contourcarpet/index.js | 8 -------- src/traces/contourcarpet/plot.js | 8 -------- src/traces/densitymapbox/attributes.js | 8 -------- src/traces/densitymapbox/calc.js | 8 -------- src/traces/densitymapbox/convert.js | 8 -------- src/traces/densitymapbox/defaults.js | 8 -------- src/traces/densitymapbox/event_data.js | 8 -------- src/traces/densitymapbox/hover.js | 8 -------- src/traces/densitymapbox/index.js | 8 -------- src/traces/densitymapbox/plot.js | 8 -------- src/traces/funnel/arrays_to_calcdata.js | 8 -------- src/traces/funnel/attributes.js | 8 -------- src/traces/funnel/calc.js | 8 -------- src/traces/funnel/constants.js | 8 -------- src/traces/funnel/cross_trace_calc.js | 8 -------- src/traces/funnel/defaults.js | 8 -------- src/traces/funnel/event_data.js | 8 -------- src/traces/funnel/hover.js | 8 -------- src/traces/funnel/index.js | 8 -------- src/traces/funnel/layout_attributes.js | 8 -------- src/traces/funnel/layout_defaults.js | 8 -------- src/traces/funnel/plot.js | 8 -------- src/traces/funnel/style.js | 8 -------- src/traces/funnelarea/attributes.js | 8 -------- src/traces/funnelarea/base_plot.js | 8 -------- src/traces/funnelarea/calc.js | 8 -------- src/traces/funnelarea/defaults.js | 8 -------- src/traces/funnelarea/index.js | 8 -------- src/traces/funnelarea/layout_attributes.js | 8 -------- src/traces/funnelarea/layout_defaults.js | 8 -------- src/traces/funnelarea/plot.js | 8 -------- src/traces/funnelarea/style.js | 8 -------- src/traces/heatmap/attributes.js | 8 -------- src/traces/heatmap/calc.js | 8 -------- src/traces/heatmap/clean_2d_array.js | 8 -------- src/traces/heatmap/colorbar.js | 8 -------- src/traces/heatmap/convert_column_xyz.js | 9 --------- src/traces/heatmap/defaults.js | 9 --------- src/traces/heatmap/find_empties.js | 8 -------- src/traces/heatmap/hover.js | 8 -------- src/traces/heatmap/index.js | 8 -------- src/traces/heatmap/interp2d.js | 8 -------- src/traces/heatmap/make_bound_array.js | 8 -------- src/traces/heatmap/plot.js | 9 --------- src/traces/heatmap/style.js | 9 --------- src/traces/heatmap/style_defaults.js | 9 --------- src/traces/heatmap/xyz_defaults.js | 8 -------- src/traces/heatmapgl/attributes.js | 8 -------- src/traces/heatmapgl/convert.js | 9 --------- src/traces/heatmapgl/defaults.js | 9 --------- src/traces/heatmapgl/index.js | 8 -------- src/traces/histogram/attributes.js | 8 -------- src/traces/histogram/average.js | 9 --------- src/traces/histogram/bin_attributes.js | 8 -------- src/traces/histogram/bin_functions.js | 9 --------- src/traces/histogram/bin_label_vals.js | 9 --------- src/traces/histogram/calc.js | 8 -------- src/traces/histogram/constants.js | 9 --------- src/traces/histogram/cross_trace_defaults.js | 8 -------- src/traces/histogram/defaults.js | 8 -------- src/traces/histogram/event_data.js | 8 -------- src/traces/histogram/hover.js | 9 --------- src/traces/histogram/index.js | 8 -------- src/traces/histogram/norm_functions.js | 9 --------- src/traces/histogram2d/attributes.js | 8 -------- src/traces/histogram2d/calc.js | 8 -------- src/traces/histogram2d/defaults.js | 9 --------- src/traces/histogram2d/hover.js | 9 --------- src/traces/histogram2d/index.js | 8 -------- src/traces/histogram2d/sample_defaults.js | 8 -------- src/traces/histogram2dcontour/attributes.js | 8 -------- src/traces/histogram2dcontour/defaults.js | 9 --------- src/traces/histogram2dcontour/index.js | 8 -------- src/traces/image/attributes.js | 8 -------- src/traces/image/calc.js | 8 -------- src/traces/image/constants.js | 8 -------- src/traces/image/defaults.js | 8 -------- src/traces/image/event_data.js | 8 -------- src/traces/image/helpers.js | 8 -------- src/traces/image/hover.js | 8 -------- src/traces/image/index.js | 8 -------- src/traces/image/plot.js | 8 -------- src/traces/image/style.js | 8 -------- src/traces/indicator/attributes.js | 8 -------- src/traces/indicator/base_plot.js | 8 -------- src/traces/indicator/calc.js | 8 -------- src/traces/indicator/constants.js | 8 -------- src/traces/indicator/defaults.js | 8 -------- src/traces/indicator/index.js | 8 -------- src/traces/indicator/plot.js | 8 -------- src/traces/isosurface/attributes.js | 8 -------- src/traces/isosurface/calc.js | 8 -------- src/traces/isosurface/convert.js | 8 -------- src/traces/isosurface/defaults.js | 8 -------- src/traces/isosurface/index.js | 8 -------- src/traces/mesh3d/attributes.js | 8 -------- src/traces/mesh3d/calc.js | 8 -------- src/traces/mesh3d/convert.js | 8 -------- src/traces/mesh3d/defaults.js | 9 --------- src/traces/mesh3d/index.js | 8 -------- src/traces/ohlc/attributes.js | 9 --------- src/traces/ohlc/calc.js | 8 -------- src/traces/ohlc/defaults.js | 9 --------- src/traces/ohlc/hover.js | 8 -------- src/traces/ohlc/index.js | 8 -------- src/traces/ohlc/ohlc_defaults.js | 8 -------- src/traces/ohlc/plot.js | 8 -------- src/traces/ohlc/select.js | 8 -------- src/traces/ohlc/style.js | 8 -------- src/traces/parcats/attributes.js | 8 -------- src/traces/parcats/base_plot.js | 8 -------- src/traces/parcats/calc.js | 8 -------- src/traces/parcats/defaults.js | 8 -------- src/traces/parcats/index.js | 8 -------- src/traces/parcats/parcats.js | 8 -------- src/traces/parcats/plot.js | 8 -------- src/traces/parcoords/attributes.js | 8 -------- src/traces/parcoords/axisbrush.js | 8 -------- src/traces/parcoords/base_plot.js | 8 -------- src/traces/parcoords/calc.js | 8 -------- src/traces/parcoords/constants.js | 8 -------- src/traces/parcoords/defaults.js | 8 -------- src/traces/parcoords/helpers.js | 8 -------- src/traces/parcoords/index.js | 8 -------- src/traces/parcoords/lines.js | 8 -------- src/traces/parcoords/merge_length.js | 8 -------- src/traces/parcoords/parcoords.js | 8 -------- src/traces/parcoords/plot.js | 8 -------- src/traces/pie/attributes.js | 8 -------- src/traces/pie/base_plot.js | 8 -------- src/traces/pie/calc.js | 8 -------- src/traces/pie/defaults.js | 8 -------- src/traces/pie/event_data.js | 8 -------- src/traces/pie/helpers.js | 8 -------- src/traces/pie/index.js | 8 -------- src/traces/pie/layout_attributes.js | 8 -------- src/traces/pie/layout_defaults.js | 8 -------- src/traces/pie/plot.js | 8 -------- src/traces/pie/style.js | 8 -------- src/traces/pie/style_one.js | 8 -------- src/traces/pointcloud/attributes.js | 8 -------- src/traces/pointcloud/convert.js | 8 -------- src/traces/pointcloud/defaults.js | 9 --------- src/traces/pointcloud/index.js | 8 -------- src/traces/sankey/attributes.js | 8 -------- src/traces/sankey/base_plot.js | 8 -------- src/traces/sankey/calc.js | 8 -------- src/traces/sankey/constants.js | 8 -------- src/traces/sankey/defaults.js | 8 -------- src/traces/sankey/index.js | 8 -------- src/traces/sankey/plot.js | 8 -------- src/traces/sankey/render.js | 8 -------- src/traces/sankey/select.js | 8 -------- src/traces/scatter/arrays_to_calcdata.js | 9 --------- src/traces/scatter/attributes.js | 8 -------- src/traces/scatter/calc.js | 8 -------- src/traces/scatter/calc_selection.js | 8 -------- src/traces/scatter/colorscale_calc.js | 8 -------- src/traces/scatter/constants.js | 9 --------- src/traces/scatter/cross_trace_calc.js | 9 --------- src/traces/scatter/cross_trace_defaults.js | 9 --------- src/traces/scatter/defaults.js | 8 -------- src/traces/scatter/fillcolor_defaults.js | 9 --------- src/traces/scatter/format_labels.js | 8 -------- src/traces/scatter/get_trace_color.js | 9 --------- src/traces/scatter/hover.js | 8 -------- src/traces/scatter/index.js | 8 -------- src/traces/scatter/line_defaults.js | 8 -------- src/traces/scatter/line_points.js | 9 --------- src/traces/scatter/line_shape_defaults.js | 9 --------- src/traces/scatter/link_traces.js | 8 -------- src/traces/scatter/make_bubble_size_func.js | 9 --------- src/traces/scatter/marker_colorbar.js | 9 --------- src/traces/scatter/marker_defaults.js | 8 -------- src/traces/scatter/period_defaults.js | 8 -------- src/traces/scatter/plot.js | 9 --------- src/traces/scatter/select.js | 9 --------- src/traces/scatter/stack_defaults.js | 8 -------- src/traces/scatter/style.js | 9 --------- src/traces/scatter/subtypes.js | 9 --------- src/traces/scatter/text_defaults.js | 9 --------- src/traces/scatter/xy_defaults.js | 8 -------- src/traces/scatter3d/attributes.js | 8 -------- src/traces/scatter3d/calc.js | 8 -------- src/traces/scatter3d/calc_errors.js | 8 -------- src/traces/scatter3d/convert.js | 9 --------- src/traces/scatter3d/defaults.js | 9 --------- src/traces/scatter3d/index.js | 8 -------- src/traces/scattercarpet/attributes.js | 8 -------- src/traces/scattercarpet/calc.js | 9 --------- src/traces/scattercarpet/defaults.js | 9 --------- src/traces/scattercarpet/event_data.js | 8 -------- src/traces/scattercarpet/format_labels.js | 8 -------- src/traces/scattercarpet/hover.js | 8 -------- src/traces/scattercarpet/index.js | 8 -------- src/traces/scattercarpet/plot.js | 9 --------- src/traces/scattergeo/attributes.js | 8 -------- src/traces/scattergeo/calc.js | 9 --------- src/traces/scattergeo/defaults.js | 8 -------- src/traces/scattergeo/event_data.js | 9 --------- src/traces/scattergeo/format_labels.js | 8 -------- src/traces/scattergeo/hover.js | 8 -------- src/traces/scattergeo/index.js | 8 -------- src/traces/scattergeo/plot.js | 8 -------- src/traces/scattergeo/select.js | 8 -------- src/traces/scattergeo/style.js | 8 -------- src/traces/scattergl/attributes.js | 8 -------- src/traces/scattergl/calc.js | 8 -------- src/traces/scattergl/constants.js | 8 -------- src/traces/scattergl/convert.js | 8 -------- src/traces/scattergl/defaults.js | 8 -------- src/traces/scattergl/edit_style.js | 8 -------- src/traces/scattergl/format_labels.js | 8 -------- src/traces/scattergl/helpers.js | 8 -------- src/traces/scattergl/hover.js | 8 -------- src/traces/scattergl/index.js | 8 -------- src/traces/scattergl/plot.js | 8 -------- src/traces/scattergl/scene_update.js | 8 -------- src/traces/scattergl/select.js | 8 -------- src/traces/scattermapbox/attributes.js | 8 -------- src/traces/scattermapbox/convert.js | 8 -------- src/traces/scattermapbox/defaults.js | 8 -------- src/traces/scattermapbox/event_data.js | 9 --------- src/traces/scattermapbox/format_labels.js | 8 -------- src/traces/scattermapbox/hover.js | 9 --------- src/traces/scattermapbox/index.js | 8 -------- src/traces/scattermapbox/plot.js | 8 -------- src/traces/scattermapbox/select.js | 8 -------- src/traces/scatterpolar/attributes.js | 8 -------- src/traces/scatterpolar/calc.js | 9 --------- src/traces/scatterpolar/defaults.js | 8 -------- src/traces/scatterpolar/format_labels.js | 8 -------- src/traces/scatterpolar/hover.js | 8 -------- src/traces/scatterpolar/index.js | 8 -------- src/traces/scatterpolar/plot.js | 8 -------- src/traces/scatterpolargl/attributes.js | 8 -------- src/traces/scatterpolargl/calc.js | 8 -------- src/traces/scatterpolargl/defaults.js | 8 -------- src/traces/scatterpolargl/format_labels.js | 8 -------- src/traces/scatterpolargl/hover.js | 8 -------- src/traces/scatterpolargl/index.js | 8 -------- src/traces/scatterpolargl/plot.js | 8 -------- src/traces/scatterternary/attributes.js | 8 -------- src/traces/scatterternary/calc.js | 9 --------- src/traces/scatterternary/defaults.js | 9 --------- src/traces/scatterternary/event_data.js | 8 -------- src/traces/scatterternary/format_labels.js | 8 -------- src/traces/scatterternary/hover.js | 8 -------- src/traces/scatterternary/index.js | 8 -------- src/traces/scatterternary/plot.js | 9 --------- src/traces/splom/attributes.js | 8 -------- src/traces/splom/base_plot.js | 8 -------- src/traces/splom/calc.js | 8 -------- src/traces/splom/defaults.js | 8 -------- src/traces/splom/edit_style.js | 8 -------- src/traces/splom/helpers.js | 8 -------- src/traces/splom/hover.js | 8 -------- src/traces/splom/index.js | 8 -------- src/traces/splom/plot.js | 8 -------- src/traces/splom/scene_update.js | 8 -------- src/traces/splom/select.js | 8 -------- src/traces/streamtube/attributes.js | 8 -------- src/traces/streamtube/calc.js | 8 -------- src/traces/streamtube/convert.js | 8 -------- src/traces/streamtube/defaults.js | 8 -------- src/traces/streamtube/index.js | 8 -------- src/traces/sunburst/attributes.js | 8 -------- src/traces/sunburst/base_plot.js | 8 -------- src/traces/sunburst/calc.js | 8 -------- src/traces/sunburst/constants.js | 8 -------- src/traces/sunburst/defaults.js | 8 -------- src/traces/sunburst/fx.js | 8 -------- src/traces/sunburst/helpers.js | 8 -------- src/traces/sunburst/index.js | 8 -------- src/traces/sunburst/layout_attributes.js | 8 -------- src/traces/sunburst/layout_defaults.js | 8 -------- src/traces/sunburst/plot.js | 8 -------- src/traces/sunburst/style.js | 8 -------- src/traces/surface/attributes.js | 8 -------- src/traces/surface/calc.js | 9 --------- src/traces/surface/convert.js | 9 --------- src/traces/surface/defaults.js | 8 -------- src/traces/surface/index.js | 8 -------- src/traces/table/attributes.js | 8 -------- src/traces/table/base_plot.js | 8 -------- src/traces/table/calc.js | 8 -------- src/traces/table/constants.js | 8 -------- src/traces/table/data_preparation_helper.js | 8 -------- src/traces/table/data_split_helpers.js | 8 -------- src/traces/table/defaults.js | 8 -------- src/traces/table/index.js | 8 -------- src/traces/table/plot.js | 8 -------- src/traces/treemap/attributes.js | 8 -------- src/traces/treemap/base_plot.js | 8 -------- src/traces/treemap/calc.js | 8 -------- src/traces/treemap/constants.js | 8 -------- src/traces/treemap/defaults.js | 8 -------- src/traces/treemap/draw_ancestors.js | 8 -------- src/traces/treemap/draw_descendants.js | 8 -------- src/traces/treemap/index.js | 8 -------- src/traces/treemap/layout_attributes.js | 8 -------- src/traces/treemap/layout_defaults.js | 8 -------- src/traces/treemap/partition.js | 8 -------- src/traces/treemap/plot.js | 8 -------- src/traces/treemap/style.js | 8 -------- src/traces/violin/attributes.js | 8 -------- src/traces/violin/calc.js | 8 -------- src/traces/violin/cross_trace_calc.js | 8 -------- src/traces/violin/defaults.js | 8 -------- src/traces/violin/helpers.js | 8 -------- src/traces/violin/hover.js | 8 -------- src/traces/violin/index.js | 8 -------- src/traces/violin/layout_attributes.js | 8 -------- src/traces/violin/layout_defaults.js | 8 -------- src/traces/violin/plot.js | 8 -------- src/traces/violin/style.js | 8 -------- src/traces/volume/attributes.js | 8 -------- src/traces/volume/convert.js | 8 -------- src/traces/volume/defaults.js | 8 -------- src/traces/volume/index.js | 8 -------- src/traces/waterfall/attributes.js | 8 -------- src/traces/waterfall/calc.js | 8 -------- src/traces/waterfall/constants.js | 8 -------- src/traces/waterfall/cross_trace_calc.js | 8 -------- src/traces/waterfall/defaults.js | 8 -------- src/traces/waterfall/event_data.js | 8 -------- src/traces/waterfall/hover.js | 8 -------- src/traces/waterfall/index.js | 8 -------- src/traces/waterfall/layout_attributes.js | 8 -------- src/traces/waterfall/layout_defaults.js | 8 -------- src/traces/waterfall/plot.js | 8 -------- src/traces/waterfall/style.js | 8 -------- src/transforms/aggregate.js | 8 -------- src/transforms/filter.js | 8 -------- src/transforms/groupby.js | 8 -------- src/transforms/helpers.js | 8 -------- src/transforms/sort.js | 8 -------- src/version.js | 8 -------- 879 files changed, 7199 deletions(-) diff --git a/lib/aggregate.js b/lib/aggregate.js index 3bb724a3bff..a076feab6c5 100644 --- a/lib/aggregate.js +++ b/lib/aggregate.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/transforms/aggregate'); diff --git a/lib/bar.js b/lib/bar.js index e6d20bf3d5d..53397793ff9 100644 --- a/lib/bar.js +++ b/lib/bar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/bar'); diff --git a/lib/barpolar.js b/lib/barpolar.js index dff1421eabb..5791f600e7c 100644 --- a/lib/barpolar.js +++ b/lib/barpolar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/barpolar'); diff --git a/lib/box.js b/lib/box.js index 878dcce1a43..4fc66201240 100644 --- a/lib/box.js +++ b/lib/box.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/box'); diff --git a/lib/calendars.js b/lib/calendars.js index 694fb592654..f197dad6716 100644 --- a/lib/calendars.js +++ b/lib/calendars.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/components/calendars'); diff --git a/lib/candlestick.js b/lib/candlestick.js index b7611530182..438d3eaf22e 100644 --- a/lib/candlestick.js +++ b/lib/candlestick.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/candlestick'); diff --git a/lib/carpet.js b/lib/carpet.js index 1f7c5e4f63e..cbc90b5c201 100644 --- a/lib/carpet.js +++ b/lib/carpet.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/carpet'); diff --git a/lib/choropleth.js b/lib/choropleth.js index 663ef627d62..6fc96766e81 100644 --- a/lib/choropleth.js +++ b/lib/choropleth.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/choropleth'); diff --git a/lib/choroplethmapbox.js b/lib/choroplethmapbox.js index 32ef2c9de5b..eebd007f658 100644 --- a/lib/choroplethmapbox.js +++ b/lib/choroplethmapbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/choroplethmapbox'); diff --git a/lib/cone.js b/lib/cone.js index eaf0d0a5e65..63b1b490ff0 100644 --- a/lib/cone.js +++ b/lib/cone.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/cone'); diff --git a/lib/contour.js b/lib/contour.js index 2fa4b9c20c8..3ed8332b64a 100644 --- a/lib/contour.js +++ b/lib/contour.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/contour'); diff --git a/lib/contourcarpet.js b/lib/contourcarpet.js index e1387dc0488..e5d16e9b71d 100644 --- a/lib/contourcarpet.js +++ b/lib/contourcarpet.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/contourcarpet'); diff --git a/lib/core.js b/lib/core.js index 92b3a0ab318..75182f42c07 100644 --- a/lib/core.js +++ b/lib/core.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/core'); diff --git a/lib/densitymapbox.js b/lib/densitymapbox.js index f1237f3480e..6607531c90b 100644 --- a/lib/densitymapbox.js +++ b/lib/densitymapbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/densitymapbox'); diff --git a/lib/filter.js b/lib/filter.js index 08ce011ca1a..f53c81505c3 100644 --- a/lib/filter.js +++ b/lib/filter.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/transforms/filter'); diff --git a/lib/funnel.js b/lib/funnel.js index da0fad1f2e0..434e1cc99ad 100644 --- a/lib/funnel.js +++ b/lib/funnel.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/funnel'); diff --git a/lib/funnelarea.js b/lib/funnelarea.js index 06c6d292f19..e10ce6ec6ca 100644 --- a/lib/funnelarea.js +++ b/lib/funnelarea.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/funnelarea'); diff --git a/lib/groupby.js b/lib/groupby.js index 230ea37f1fe..ca5334865b6 100644 --- a/lib/groupby.js +++ b/lib/groupby.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/transforms/groupby'); diff --git a/lib/heatmap.js b/lib/heatmap.js index f01441113a5..668e97c3fc6 100644 --- a/lib/heatmap.js +++ b/lib/heatmap.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/heatmap'); diff --git a/lib/heatmapgl.js b/lib/heatmapgl.js index 8554aad30ef..04be0e5ad86 100644 --- a/lib/heatmapgl.js +++ b/lib/heatmapgl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/heatmapgl'); diff --git a/lib/histogram.js b/lib/histogram.js index 0445100da1b..5468e89a96f 100644 --- a/lib/histogram.js +++ b/lib/histogram.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/histogram'); diff --git a/lib/histogram2d.js b/lib/histogram2d.js index 9c5ef715476..3cb6bc5c680 100644 --- a/lib/histogram2d.js +++ b/lib/histogram2d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/histogram2d'); diff --git a/lib/histogram2dcontour.js b/lib/histogram2dcontour.js index 5fd431a3243..a8afc916ce3 100644 --- a/lib/histogram2dcontour.js +++ b/lib/histogram2dcontour.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/histogram2dcontour'); diff --git a/lib/image.js b/lib/image.js index 23f39bb1fd8..12c4105394c 100644 --- a/lib/image.js +++ b/lib/image.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/image'); diff --git a/lib/index-basic.js b/lib/index-basic.js index ca431c84c6d..cb2ed7fd10d 100644 --- a/lib/index-basic.js +++ b/lib/index-basic.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-cartesian.js b/lib/index-cartesian.js index 94167d90d52..09d9e693d5c 100644 --- a/lib/index-cartesian.js +++ b/lib/index-cartesian.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-finance.js b/lib/index-finance.js index 2f9be8733b8..58d20c76678 100644 --- a/lib/index-finance.js +++ b/lib/index-finance.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-geo.js b/lib/index-geo.js index 0bb5fb2145f..7317dccf4ea 100644 --- a/lib/index-geo.js +++ b/lib/index-geo.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-gl2d.js b/lib/index-gl2d.js index 5d8e572c0d1..10825b26f6e 100644 --- a/lib/index-gl2d.js +++ b/lib/index-gl2d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-gl3d.js b/lib/index-gl3d.js index 800995e5608..24b471d5a1c 100644 --- a/lib/index-gl3d.js +++ b/lib/index-gl3d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-mapbox.js b/lib/index-mapbox.js index 272387d9810..ef5b04c28da 100644 --- a/lib/index-mapbox.js +++ b/lib/index-mapbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index-strict.js b/lib/index-strict.js index 961e86d4b99..1b8d1d03f6f 100644 --- a/lib/index-strict.js +++ b/lib/index-strict.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/index.js b/lib/index.js index 30dbb1ac4bf..826c885afbc 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Plotly = require('./core'); diff --git a/lib/indicator.js b/lib/indicator.js index 05494b89c09..e9f5d384743 100644 --- a/lib/indicator.js +++ b/lib/indicator.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/indicator'); diff --git a/lib/isosurface.js b/lib/isosurface.js index 329bf5c38fe..569b4890eb1 100644 --- a/lib/isosurface.js +++ b/lib/isosurface.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/isosurface'); diff --git a/lib/locales/af.js b/lib/locales/af.js index 61b32289b6c..3afd7f805d8 100644 --- a/lib/locales/af.js +++ b/lib/locales/af.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/am.js b/lib/locales/am.js index 413411472f4..2c6d4a9e277 100644 --- a/lib/locales/am.js +++ b/lib/locales/am.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ar-dz.js b/lib/locales/ar-dz.js index b8d53aa0e80..391f7920f2e 100644 --- a/lib/locales/ar-dz.js +++ b/lib/locales/ar-dz.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ar-eg.js b/lib/locales/ar-eg.js index fc341e47f61..8164e1ff0c3 100644 --- a/lib/locales/ar-eg.js +++ b/lib/locales/ar-eg.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ar.js b/lib/locales/ar.js index af1cab36daf..09f1707d7c6 100644 --- a/lib/locales/ar.js +++ b/lib/locales/ar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/az.js b/lib/locales/az.js index ae6a1159022..9882059b9c2 100644 --- a/lib/locales/az.js +++ b/lib/locales/az.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/bg.js b/lib/locales/bg.js index d29efd9c63c..b7e33f974af 100644 --- a/lib/locales/bg.js +++ b/lib/locales/bg.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/bs.js b/lib/locales/bs.js index 7f1ec43c9d0..02181cff3c5 100644 --- a/lib/locales/bs.js +++ b/lib/locales/bs.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ca.js b/lib/locales/ca.js index eb37462ecc0..67264c2f71c 100644 --- a/lib/locales/ca.js +++ b/lib/locales/ca.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/cs.js b/lib/locales/cs.js index d1a45d4b564..990ab912524 100644 --- a/lib/locales/cs.js +++ b/lib/locales/cs.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/cy.js b/lib/locales/cy.js index 29061080a73..4c791456754 100644 --- a/lib/locales/cy.js +++ b/lib/locales/cy.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/da.js b/lib/locales/da.js index 22e9115540b..dfd391552f0 100644 --- a/lib/locales/da.js +++ b/lib/locales/da.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/de-ch.js b/lib/locales/de-ch.js index f74d576e4c8..258f8a37fbf 100644 --- a/lib/locales/de-ch.js +++ b/lib/locales/de-ch.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/de.js b/lib/locales/de.js index 7f8d8f732d6..f5763b7d17d 100644 --- a/lib/locales/de.js +++ b/lib/locales/de.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/el.js b/lib/locales/el.js index 6e91d7e9a7e..51c9029f36f 100644 --- a/lib/locales/el.js +++ b/lib/locales/el.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/eo.js b/lib/locales/eo.js index 84bca6a121c..3ff14694554 100644 --- a/lib/locales/eo.js +++ b/lib/locales/eo.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/es-ar.js b/lib/locales/es-ar.js index 816ebada65a..1cff79db85d 100644 --- a/lib/locales/es-ar.js +++ b/lib/locales/es-ar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/es-pe.js b/lib/locales/es-pe.js index f3a3a293f6e..2b2f682bb11 100644 --- a/lib/locales/es-pe.js +++ b/lib/locales/es-pe.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/es.js b/lib/locales/es.js index 2f0f2e953f8..0d8104a6335 100644 --- a/lib/locales/es.js +++ b/lib/locales/es.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/et.js b/lib/locales/et.js index ef82346536d..de46cecd218 100644 --- a/lib/locales/et.js +++ b/lib/locales/et.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/eu.js b/lib/locales/eu.js index f8daa4dfd04..677bdf75ed8 100644 --- a/lib/locales/eu.js +++ b/lib/locales/eu.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/fa.js b/lib/locales/fa.js index 931378c0f47..3721eb1930d 100644 --- a/lib/locales/fa.js +++ b/lib/locales/fa.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/fi.js b/lib/locales/fi.js index 20ca23878b4..0cbd9ba807c 100644 --- a/lib/locales/fi.js +++ b/lib/locales/fi.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/fo.js b/lib/locales/fo.js index 0e431d8e74a..6a39b592b5b 100644 --- a/lib/locales/fo.js +++ b/lib/locales/fo.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/fr-ch.js b/lib/locales/fr-ch.js index 4b5edb17371..21ef9eb888d 100644 --- a/lib/locales/fr-ch.js +++ b/lib/locales/fr-ch.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/fr.js b/lib/locales/fr.js index 21b67cd594e..818867ad4cc 100644 --- a/lib/locales/fr.js +++ b/lib/locales/fr.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/gl.js b/lib/locales/gl.js index 4c6bdb112c3..be4a8bbb9fd 100644 --- a/lib/locales/gl.js +++ b/lib/locales/gl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/gu.js b/lib/locales/gu.js index b4c1b73ab93..a85987752b5 100644 --- a/lib/locales/gu.js +++ b/lib/locales/gu.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/he.js b/lib/locales/he.js index 1dcc005321b..88ac57227c0 100644 --- a/lib/locales/he.js +++ b/lib/locales/he.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/hi-in.js b/lib/locales/hi-in.js index ad943bddd81..a59e72b643d 100644 --- a/lib/locales/hi-in.js +++ b/lib/locales/hi-in.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/hr.js b/lib/locales/hr.js index 890a1ffb58e..9cc3f581f0e 100644 --- a/lib/locales/hr.js +++ b/lib/locales/hr.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/hu.js b/lib/locales/hu.js index d67a14585ce..cdefdb60fa7 100644 --- a/lib/locales/hu.js +++ b/lib/locales/hu.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/hy.js b/lib/locales/hy.js index 06766c61b96..a2f5abafce0 100644 --- a/lib/locales/hy.js +++ b/lib/locales/hy.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/id.js b/lib/locales/id.js index 3f63b70badc..cde055622cc 100644 --- a/lib/locales/id.js +++ b/lib/locales/id.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/is.js b/lib/locales/is.js index 734885d2f0b..d07dd2bea47 100644 --- a/lib/locales/is.js +++ b/lib/locales/is.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/it.js b/lib/locales/it.js index 883a0ec5151..e4e44092d6b 100644 --- a/lib/locales/it.js +++ b/lib/locales/it.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ja.js b/lib/locales/ja.js index 834ef8c3a6b..0a682671ded 100644 --- a/lib/locales/ja.js +++ b/lib/locales/ja.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ka.js b/lib/locales/ka.js index 07b7e9b5db4..19f6e79d75c 100644 --- a/lib/locales/ka.js +++ b/lib/locales/ka.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/km.js b/lib/locales/km.js index 1771ec61f06..8d0b8db496e 100644 --- a/lib/locales/km.js +++ b/lib/locales/km.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ko.js b/lib/locales/ko.js index 75cec49c3d5..cee633b617d 100644 --- a/lib/locales/ko.js +++ b/lib/locales/ko.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/lt.js b/lib/locales/lt.js index e931548a73e..0369c53dc70 100644 --- a/lib/locales/lt.js +++ b/lib/locales/lt.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/lv.js b/lib/locales/lv.js index 30371ac3e93..ae3fc688e82 100644 --- a/lib/locales/lv.js +++ b/lib/locales/lv.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/me-me.js b/lib/locales/me-me.js index f61a2de3ca7..6de06e48c8c 100644 --- a/lib/locales/me-me.js +++ b/lib/locales/me-me.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/me.js b/lib/locales/me.js index b3a31615c82..07633409b0e 100644 --- a/lib/locales/me.js +++ b/lib/locales/me.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/mk.js b/lib/locales/mk.js index 3219e00598a..3d572ce6e55 100644 --- a/lib/locales/mk.js +++ b/lib/locales/mk.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ml.js b/lib/locales/ml.js index 93c48fff64f..c51cf109121 100644 --- a/lib/locales/ml.js +++ b/lib/locales/ml.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ms.js b/lib/locales/ms.js index 360bba6944e..ef0a7453cd5 100644 --- a/lib/locales/ms.js +++ b/lib/locales/ms.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/mt.js b/lib/locales/mt.js index 6fa371e989c..bce16a34b69 100644 --- a/lib/locales/mt.js +++ b/lib/locales/mt.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/nl-be.js b/lib/locales/nl-be.js index 4e3d87eeb1f..000c8055617 100644 --- a/lib/locales/nl-be.js +++ b/lib/locales/nl-be.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/nl.js b/lib/locales/nl.js index ce481f8986a..89f4bb4cce0 100644 --- a/lib/locales/nl.js +++ b/lib/locales/nl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/no.js b/lib/locales/no.js index 4e0ed99cf44..848fdce43c4 100644 --- a/lib/locales/no.js +++ b/lib/locales/no.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/pa.js b/lib/locales/pa.js index a0791d1519f..7cc44c0684e 100644 --- a/lib/locales/pa.js +++ b/lib/locales/pa.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/pl.js b/lib/locales/pl.js index 05b8fdbee71..f9fa9a88370 100644 --- a/lib/locales/pl.js +++ b/lib/locales/pl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/pt-br.js b/lib/locales/pt-br.js index 35b01c7bda8..5829130a190 100644 --- a/lib/locales/pt-br.js +++ b/lib/locales/pt-br.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/pt-pt.js b/lib/locales/pt-pt.js index c8a84d93e61..205109db849 100644 --- a/lib/locales/pt-pt.js +++ b/lib/locales/pt-pt.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/rm.js b/lib/locales/rm.js index 5e498d9dd8b..dabd6e2c15a 100644 --- a/lib/locales/rm.js +++ b/lib/locales/rm.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ro.js b/lib/locales/ro.js index 7c9fd211f89..3e9851a03fb 100644 --- a/lib/locales/ro.js +++ b/lib/locales/ro.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ru.js b/lib/locales/ru.js index d9d0abec07b..3d9a9b50a40 100644 --- a/lib/locales/ru.js +++ b/lib/locales/ru.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sk.js b/lib/locales/sk.js index c16b6141f4f..b4eee61fffc 100644 --- a/lib/locales/sk.js +++ b/lib/locales/sk.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sl.js b/lib/locales/sl.js index e07682e0e22..391916d36cc 100644 --- a/lib/locales/sl.js +++ b/lib/locales/sl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sq.js b/lib/locales/sq.js index 1b11ae37e80..75051ba615c 100644 --- a/lib/locales/sq.js +++ b/lib/locales/sq.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sr-sr.js b/lib/locales/sr-sr.js index 97cbca81110..1d177b70feb 100644 --- a/lib/locales/sr-sr.js +++ b/lib/locales/sr-sr.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sr.js b/lib/locales/sr.js index c0777a26c98..6671d7bc03a 100644 --- a/lib/locales/sr.js +++ b/lib/locales/sr.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sv.js b/lib/locales/sv.js index 1b5e353e602..571b8e8b0bd 100644 --- a/lib/locales/sv.js +++ b/lib/locales/sv.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/sw.js b/lib/locales/sw.js index 585b4f9cb4f..9478bf5ad93 100644 --- a/lib/locales/sw.js +++ b/lib/locales/sw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ta.js b/lib/locales/ta.js index 21502caddca..fcfa0eba4dc 100644 --- a/lib/locales/ta.js +++ b/lib/locales/ta.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/th.js b/lib/locales/th.js index aa1566b6dfa..89be7a7519d 100644 --- a/lib/locales/th.js +++ b/lib/locales/th.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/tr.js b/lib/locales/tr.js index 57bda3e5327..db21fbcc142 100644 --- a/lib/locales/tr.js +++ b/lib/locales/tr.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/tt.js b/lib/locales/tt.js index 7867c0cc3a4..9d99d1afa18 100644 --- a/lib/locales/tt.js +++ b/lib/locales/tt.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/uk.js b/lib/locales/uk.js index ddf62b8ab92..6d5f6eb06c7 100644 --- a/lib/locales/uk.js +++ b/lib/locales/uk.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/ur.js b/lib/locales/ur.js index 29f2f2c6584..eac7bbd7ec4 100644 --- a/lib/locales/ur.js +++ b/lib/locales/ur.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/vi.js b/lib/locales/vi.js index d56d56dd7ed..4d43b51ed63 100644 --- a/lib/locales/vi.js +++ b/lib/locales/vi.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/zh-cn.js b/lib/locales/zh-cn.js index d363bc8281a..09b5adc9b44 100644 --- a/lib/locales/zh-cn.js +++ b/lib/locales/zh-cn.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/zh-hk.js b/lib/locales/zh-hk.js index c13d2221727..37ab3c01f21 100644 --- a/lib/locales/zh-hk.js +++ b/lib/locales/zh-hk.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/locales/zh-tw.js b/lib/locales/zh-tw.js index 242c50db14a..ddfe24095a0 100644 --- a/lib/locales/zh-tw.js +++ b/lib/locales/zh-tw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/lib/mesh3d.js b/lib/mesh3d.js index 53fb083d5ee..7b3ed28f705 100644 --- a/lib/mesh3d.js +++ b/lib/mesh3d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/mesh3d'); diff --git a/lib/ohlc.js b/lib/ohlc.js index c3099f7b149..681e52fbc8a 100644 --- a/lib/ohlc.js +++ b/lib/ohlc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/ohlc'); diff --git a/lib/parcats.js b/lib/parcats.js index 0528a73ec2f..d7110b45fe3 100644 --- a/lib/parcats.js +++ b/lib/parcats.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/parcats'); diff --git a/lib/parcoords.js b/lib/parcoords.js index 54cd0be6c23..b86da9ddf10 100644 --- a/lib/parcoords.js +++ b/lib/parcoords.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/parcoords'); diff --git a/lib/pie.js b/lib/pie.js index b9d5589138b..c105e4c705b 100644 --- a/lib/pie.js +++ b/lib/pie.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/pie'); diff --git a/lib/pointcloud.js b/lib/pointcloud.js index 15d851007e8..295cbe48ed6 100644 --- a/lib/pointcloud.js +++ b/lib/pointcloud.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/pointcloud'); diff --git a/lib/register_extra.js b/lib/register_extra.js index 896edf5cb38..ba1dedb939c 100644 --- a/lib/register_extra.js +++ b/lib/register_extra.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function registerExtra(Plotly) { diff --git a/lib/sankey.js b/lib/sankey.js index e842ecfd744..eac3e438989 100644 --- a/lib/sankey.js +++ b/lib/sankey.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/sankey'); diff --git a/lib/scatter.js b/lib/scatter.js index 944e7e67a58..e0d55443d08 100644 --- a/lib/scatter.js +++ b/lib/scatter.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scatter'); diff --git a/lib/scatter3d.js b/lib/scatter3d.js index de98f9956a2..f922b7237f9 100644 --- a/lib/scatter3d.js +++ b/lib/scatter3d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scatter3d'); diff --git a/lib/scattercarpet.js b/lib/scattercarpet.js index 50f879c66ea..532ceba2c44 100644 --- a/lib/scattercarpet.js +++ b/lib/scattercarpet.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scattercarpet'); diff --git a/lib/scattergeo.js b/lib/scattergeo.js index 8b65dc7f4c7..566c9e262ea 100644 --- a/lib/scattergeo.js +++ b/lib/scattergeo.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scattergeo'); diff --git a/lib/scattergl.js b/lib/scattergl.js index bd4bf4d07a8..c7e65b5c065 100644 --- a/lib/scattergl.js +++ b/lib/scattergl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scattergl'); diff --git a/lib/scattermapbox.js b/lib/scattermapbox.js index 827f90d181d..acc67f81d92 100644 --- a/lib/scattermapbox.js +++ b/lib/scattermapbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scattermapbox'); diff --git a/lib/scatterpolar.js b/lib/scatterpolar.js index ff1bdc9c34b..744619551ed 100644 --- a/lib/scatterpolar.js +++ b/lib/scatterpolar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scatterpolar'); diff --git a/lib/scatterpolargl.js b/lib/scatterpolargl.js index e171748be7a..380831b94c9 100644 --- a/lib/scatterpolargl.js +++ b/lib/scatterpolargl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scatterpolargl'); diff --git a/lib/scatterternary.js b/lib/scatterternary.js index ae75a01a51e..33bbd5f033f 100644 --- a/lib/scatterternary.js +++ b/lib/scatterternary.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/scatterternary'); diff --git a/lib/sort.js b/lib/sort.js index c8526d9a25d..5180b3299ff 100644 --- a/lib/sort.js +++ b/lib/sort.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/transforms/sort'); diff --git a/lib/splom.js b/lib/splom.js index 60ad7f172eb..de34b05e8cb 100644 --- a/lib/splom.js +++ b/lib/splom.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/splom'); diff --git a/lib/streamtube.js b/lib/streamtube.js index 6b6e5925443..ec155612b9d 100644 --- a/lib/streamtube.js +++ b/lib/streamtube.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/streamtube'); diff --git a/lib/sunburst.js b/lib/sunburst.js index 1c3b43a40d6..2406eaa39b5 100644 --- a/lib/sunburst.js +++ b/lib/sunburst.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/sunburst'); diff --git a/lib/surface.js b/lib/surface.js index 70a1d3cd183..0f2e1f73163 100644 --- a/lib/surface.js +++ b/lib/surface.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/surface'); diff --git a/lib/table.js b/lib/table.js index a921ae35e8e..9b725b6c867 100644 --- a/lib/table.js +++ b/lib/table.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/table'); diff --git a/lib/treemap.js b/lib/treemap.js index f3964cc9599..5fde6c8828f 100644 --- a/lib/treemap.js +++ b/lib/treemap.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/treemap'); diff --git a/lib/violin.js b/lib/violin.js index 1099b03dc74..37ca776d719 100644 --- a/lib/violin.js +++ b/lib/violin.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/violin'); diff --git a/lib/volume.js b/lib/volume.js index 781da627c8c..00ddb1ec243 100644 --- a/lib/volume.js +++ b/lib/volume.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/volume'); diff --git a/lib/waterfall.js b/lib/waterfall.js index c1afc8182ac..529512264b3 100644 --- a/lib/waterfall.js +++ b/lib/waterfall.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = require('../src/traces/waterfall'); diff --git a/src/assets/geo_assets.js b/src/assets/geo_assets.js index f670f43478d..49327775b2c 100644 --- a/src/assets/geo_assets.js +++ b/src/assets/geo_assets.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var saneTopojson = require('sane-topojson'); diff --git a/src/components/annotations/arrow_paths.js b/src/components/annotations/arrow_paths.js index d02fcef30b3..8f841310ebd 100644 --- a/src/components/annotations/arrow_paths.js +++ b/src/components/annotations/arrow_paths.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/components/annotations/attributes.js b/src/components/annotations/attributes.js index a679fa7e2a2..bbbb2d230b3 100644 --- a/src/components/annotations/attributes.js +++ b/src/components/annotations/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var ARROWPATHS = require('./arrow_paths'); diff --git a/src/components/annotations/calc_autorange.js b/src/components/annotations/calc_autorange.js index b2e21a36ae2..2a22dbcf497 100644 --- a/src/components/annotations/calc_autorange.js +++ b/src/components/annotations/calc_autorange.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/annotations/click.js b/src/components/annotations/click.js index dca70aaf1fd..126c4a81d40 100644 --- a/src/components/annotations/click.js +++ b/src/components/annotations/click.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/annotations/common_defaults.js b/src/components/annotations/common_defaults.js index 384f47e22c0..49c57d10293 100644 --- a/src/components/annotations/common_defaults.js +++ b/src/components/annotations/common_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/annotations/convert_coords.js b/src/components/annotations/convert_coords.js index 83aee5442da..f870451b3ca 100644 --- a/src/components/annotations/convert_coords.js +++ b/src/components/annotations/convert_coords.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/components/annotations/defaults.js b/src/components/annotations/defaults.js index 7beb52bf5eb..32cf37c80c7 100644 --- a/src/components/annotations/defaults.js +++ b/src/components/annotations/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/annotations/draw.js b/src/components/annotations/draw.js index 40435b9031d..bf1ebf7fbec 100644 --- a/src/components/annotations/draw.js +++ b/src/components/annotations/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/annotations/draw_arrow_head.js b/src/components/annotations/draw_arrow_head.js index bbd8c3d89a9..a1f4ab305ff 100644 --- a/src/components/annotations/draw_arrow_head.js +++ b/src/components/annotations/draw_arrow_head.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/annotations/index.js b/src/components/annotations/index.js index 39c20a0c3d1..8a145ad8526 100644 --- a/src/components/annotations/index.js +++ b/src/components/annotations/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var drawModule = require('./draw'); diff --git a/src/components/annotations3d/attributes.js b/src/components/annotations3d/attributes.js index 30a9a832846..191a7bc9b41 100644 --- a/src/components/annotations3d/attributes.js +++ b/src/components/annotations3d/attributes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var annAttrs = require('../annotations/attributes'); diff --git a/src/components/annotations3d/convert.js b/src/components/annotations3d/convert.js index 43ae3294f55..a99e956d2ff 100644 --- a/src/components/annotations3d/convert.js +++ b/src/components/annotations3d/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/annotations3d/defaults.js b/src/components/annotations3d/defaults.js index 6eb2b465431..fd7888b4385 100644 --- a/src/components/annotations3d/defaults.js +++ b/src/components/annotations3d/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/annotations3d/draw.js b/src/components/annotations3d/draw.js index 635e91ad35e..0790e17a6b5 100644 --- a/src/components/annotations3d/draw.js +++ b/src/components/annotations3d/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var drawRaw = require('../annotations/draw').drawRaw; diff --git a/src/components/annotations3d/index.js b/src/components/annotations3d/index.js index c959babd6b1..bdacf6b11f1 100644 --- a/src/components/annotations3d/index.js +++ b/src/components/annotations3d/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/components/calendars/calendars.js b/src/components/calendars/calendars.js index 3a76d5544f2..f77bbb13265 100644 --- a/src/components/calendars/calendars.js +++ b/src/components/calendars/calendars.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // a trimmed down version of: diff --git a/src/components/calendars/index.js b/src/components/calendars/index.js index 5710e618624..5ff2791ac49 100644 --- a/src/components/calendars/index.js +++ b/src/components/calendars/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var calendars = require('./calendars'); diff --git a/src/components/color/attributes.js b/src/components/color/attributes.js index 636197dc1f6..710cc5eb145 100644 --- a/src/components/color/attributes.js +++ b/src/components/color/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/components/color/index.js b/src/components/color/index.js index ca0f93c1582..99cae2d12f2 100644 --- a/src/components/color/index.js +++ b/src/components/color/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var tinycolor = require('tinycolor2'); diff --git a/src/components/colorbar/attributes.js b/src/components/colorbar/attributes.js index 1bf3c3e72f0..a051d511336 100644 --- a/src/components/colorbar/attributes.js +++ b/src/components/colorbar/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var axesAttrs = require('../../plots/cartesian/layout_attributes'); diff --git a/src/components/colorbar/constants.js b/src/components/colorbar/constants.js index 6764f892d2b..593ba31a2c3 100644 --- a/src/components/colorbar/constants.js +++ b/src/components/colorbar/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/colorbar/defaults.js b/src/components/colorbar/defaults.js index 7d8a41c6088..670b799d950 100644 --- a/src/components/colorbar/defaults.js +++ b/src/components/colorbar/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/colorbar/draw.js b/src/components/colorbar/draw.js index 72fa39f43b4..cd6576b9b1e 100644 --- a/src/components/colorbar/draw.js +++ b/src/components/colorbar/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/colorbar/has_colorbar.js b/src/components/colorbar/has_colorbar.js index d799841af25..3ea50f07aba 100644 --- a/src/components/colorbar/has_colorbar.js +++ b/src/components/colorbar/has_colorbar.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/colorbar/index.js b/src/components/colorbar/index.js index 423c38f5075..d942aabed85 100644 --- a/src/components/colorbar/index.js +++ b/src/components/colorbar/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/colorscale/attributes.js b/src/components/colorscale/attributes.js index 1760ca0418b..f4940465105 100644 --- a/src/components/colorscale/attributes.js +++ b/src/components/colorscale/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorbarAttrs = require('../colorbar/attributes'); diff --git a/src/components/colorscale/calc.js b/src/components/colorscale/calc.js index 2dd39f340f5..0dd7800d431 100644 --- a/src/components/colorscale/calc.js +++ b/src/components/colorscale/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/components/colorscale/cross_trace_defaults.js b/src/components/colorscale/cross_trace_defaults.js index 5bfa66cce14..34124b9b557 100644 --- a/src/components/colorscale/cross_trace_defaults.js +++ b/src/components/colorscale/cross_trace_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/colorscale/defaults.js b/src/components/colorscale/defaults.js index de4b9d0221e..1e1151357c8 100644 --- a/src/components/colorscale/defaults.js +++ b/src/components/colorscale/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/components/colorscale/helpers.js b/src/components/colorscale/helpers.js index f87c4e5a88f..fed32703b22 100644 --- a/src/components/colorscale/helpers.js +++ b/src/components/colorscale/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/colorscale/index.js b/src/components/colorscale/index.js index 59347ace5c9..cdcb7872f42 100644 --- a/src/components/colorscale/index.js +++ b/src/components/colorscale/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scales = require('./scales'); diff --git a/src/components/colorscale/layout_attributes.js b/src/components/colorscale/layout_attributes.js index baf160aa779..6342612d200 100644 --- a/src/components/colorscale/layout_attributes.js +++ b/src/components/colorscale/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var extendFlat = require('../../lib/extend').extendFlat; diff --git a/src/components/colorscale/layout_defaults.js b/src/components/colorscale/layout_defaults.js index 1f45baf47b0..d2a356b16cb 100644 --- a/src/components/colorscale/layout_defaults.js +++ b/src/components/colorscale/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/colorscale/scales.js b/src/components/colorscale/scales.js index c48541d950b..496687cce06 100644 --- a/src/components/colorscale/scales.js +++ b/src/components/colorscale/scales.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var tinycolor = require('tinycolor2'); diff --git a/src/components/dragelement/align.js b/src/components/dragelement/align.js index 9bd969afbe5..f3405ebf1b2 100644 --- a/src/components/dragelement/align.js +++ b/src/components/dragelement/align.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/components/dragelement/cursor.js b/src/components/dragelement/cursor.js index 093e3866945..c6edea709fe 100644 --- a/src/components/dragelement/cursor.js +++ b/src/components/dragelement/cursor.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/dragelement/helpers.js b/src/components/dragelement/helpers.js index b25733db50a..4ddb8ee347c 100644 --- a/src/components/dragelement/helpers.js +++ b/src/components/dragelement/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; exports.selectMode = function(dragmode) { diff --git a/src/components/dragelement/index.js b/src/components/dragelement/index.js index a917eea08ed..1f7c0e4d8d7 100644 --- a/src/components/dragelement/index.js +++ b/src/components/dragelement/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var mouseOffset = require('mouse-event-offset'); diff --git a/src/components/dragelement/unhover.js b/src/components/dragelement/unhover.js index 9cf687aae1a..efe75ca1957 100644 --- a/src/components/dragelement/unhover.js +++ b/src/components/dragelement/unhover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Events = require('../../lib/events'); diff --git a/src/components/drawing/attributes.js b/src/components/drawing/attributes.js index 4a248749593..c0051cef85d 100644 --- a/src/components/drawing/attributes.js +++ b/src/components/drawing/attributes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; exports.dash = { diff --git a/src/components/drawing/index.js b/src/components/drawing/index.js index 8ff2565fe28..c97bfb1189b 100644 --- a/src/components/drawing/index.js +++ b/src/components/drawing/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/drawing/symbol_defs.js b/src/components/drawing/symbol_defs.js index 632a87335e1..77b02946170 100644 --- a/src/components/drawing/symbol_defs.js +++ b/src/components/drawing/symbol_defs.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/errorbars/attributes.js b/src/components/errorbars/attributes.js index 0864ea7fb63..bf4d1243105 100644 --- a/src/components/errorbars/attributes.js +++ b/src/components/errorbars/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/components/errorbars/calc.js b/src/components/errorbars/calc.js index 3b8bad0ba97..dc6c8de2644 100644 --- a/src/components/errorbars/calc.js +++ b/src/components/errorbars/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/components/errorbars/compute_error.js b/src/components/errorbars/compute_error.js index 70f228446ef..508ee89b143 100644 --- a/src/components/errorbars/compute_error.js +++ b/src/components/errorbars/compute_error.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/components/errorbars/defaults.js b/src/components/errorbars/defaults.js index 34759db7ef3..9dc0c5bf0d9 100644 --- a/src/components/errorbars/defaults.js +++ b/src/components/errorbars/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/components/errorbars/index.js b/src/components/errorbars/index.js index 32c6661a5a8..546e3751ba7 100644 --- a/src/components/errorbars/index.js +++ b/src/components/errorbars/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/errorbars/plot.js b/src/components/errorbars/plot.js index c14f360f252..3a940fa28e0 100644 --- a/src/components/errorbars/plot.js +++ b/src/components/errorbars/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/errorbars/style.js b/src/components/errorbars/style.js index 259b5e7b8a5..2f9be42f39f 100644 --- a/src/components/errorbars/style.js +++ b/src/components/errorbars/style.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/fx/attributes.js b/src/components/fx/attributes.js index b2a5e9d0443..a2548f9eccd 100644 --- a/src/components/fx/attributes.js +++ b/src/components/fx/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/components/fx/calc.js b/src/components/fx/calc.js index a7f00456042..d48024f371d 100644 --- a/src/components/fx/calc.js +++ b/src/components/fx/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/fx/click.js b/src/components/fx/click.js index 5284dcb2401..96a47a4dfe8 100644 --- a/src/components/fx/click.js +++ b/src/components/fx/click.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/components/fx/constants.js b/src/components/fx/constants.js index 2235f792606..0658a3adc57 100644 --- a/src/components/fx/constants.js +++ b/src/components/fx/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/fx/defaults.js b/src/components/fx/defaults.js index 96269150146..1df03b7141f 100644 --- a/src/components/fx/defaults.js +++ b/src/components/fx/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/fx/helpers.js b/src/components/fx/helpers.js index dbe51b5b6d7..f11e5266ef7 100644 --- a/src/components/fx/helpers.js +++ b/src/components/fx/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/fx/hover.js b/src/components/fx/hover.js index 9a511a5f3ec..bf0723787c5 100644 --- a/src/components/fx/hover.js +++ b/src/components/fx/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/fx/hoverlabel_defaults.js b/src/components/fx/hoverlabel_defaults.js index 68e77e3f432..c0e62bbd9d4 100644 --- a/src/components/fx/hoverlabel_defaults.js +++ b/src/components/fx/hoverlabel_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/fx/hovermode_defaults.js b/src/components/fx/hovermode_defaults.js index 8746981d30c..15071ddcfb9 100644 --- a/src/components/fx/hovermode_defaults.js +++ b/src/components/fx/hovermode_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/fx/index.js b/src/components/fx/index.js index e16b6716543..8fc661c0c54 100644 --- a/src/components/fx/index.js +++ b/src/components/fx/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/fx/layout_attributes.js b/src/components/fx/layout_attributes.js index 3e330ec6748..756e5f79435 100644 --- a/src/components/fx/layout_attributes.js +++ b/src/components/fx/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var constants = require('./constants'); diff --git a/src/components/fx/layout_defaults.js b/src/components/fx/layout_defaults.js index 1c978fce00a..1d28e242400 100644 --- a/src/components/fx/layout_defaults.js +++ b/src/components/fx/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/fx/layout_global_defaults.js b/src/components/fx/layout_global_defaults.js index f3c83489b70..127a16eac0d 100644 --- a/src/components/fx/layout_global_defaults.js +++ b/src/components/fx/layout_global_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/grid/index.js b/src/components/grid/index.js index ccbc15f9656..10012533101 100644 --- a/src/components/grid/index.js +++ b/src/components/grid/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/images/attributes.js b/src/components/images/attributes.js index ad4d9807b17..2aec730a910 100644 --- a/src/components/images/attributes.js +++ b/src/components/images/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var cartesianConstants = require('../../plots/cartesian/constants'); diff --git a/src/components/images/convert_coords.js b/src/components/images/convert_coords.js index 8fe81f2ef30..6ed8f3166df 100644 --- a/src/components/images/convert_coords.js +++ b/src/components/images/convert_coords.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/components/images/defaults.js b/src/components/images/defaults.js index 41ca9405987..acde26ed799 100644 --- a/src/components/images/defaults.js +++ b/src/components/images/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/images/draw.js b/src/components/images/draw.js index 17c17382e99..b08cdebbd09 100644 --- a/src/components/images/draw.js +++ b/src/components/images/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/images/index.js b/src/components/images/index.js index 2e2db06c1cb..5bbc8edb857 100644 --- a/src/components/images/index.js +++ b/src/components/images/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/legend/attributes.js b/src/components/legend/attributes.js index caf804c8396..7179f99bcce 100644 --- a/src/components/legend/attributes.js +++ b/src/components/legend/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/components/legend/constants.js b/src/components/legend/constants.js index f9d8bc5a69b..b5b4264de39 100644 --- a/src/components/legend/constants.js +++ b/src/components/legend/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/legend/defaults.js b/src/components/legend/defaults.js index 8c481dae849..f1e434d8b6f 100644 --- a/src/components/legend/defaults.js +++ b/src/components/legend/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/components/legend/draw.js b/src/components/legend/draw.js index 6e2a8189ac6..0d4d9472f5b 100644 --- a/src/components/legend/draw.js +++ b/src/components/legend/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/legend/get_legend_data.js b/src/components/legend/get_legend_data.js index 9bfefff6b1d..4fcb91b1e4d 100644 --- a/src/components/legend/get_legend_data.js +++ b/src/components/legend/get_legend_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/components/legend/handle_click.js b/src/components/legend/handle_click.js index 8a07d814738..b8683060a68 100644 --- a/src/components/legend/handle_click.js +++ b/src/components/legend/handle_click.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/legend/helpers.js b/src/components/legend/helpers.js index d60274b376a..2e2c688db7f 100644 --- a/src/components/legend/helpers.js +++ b/src/components/legend/helpers.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; exports.isGrouped = function isGrouped(legendLayout) { diff --git a/src/components/legend/index.js b/src/components/legend/index.js index abb8f05595b..1a901ce1dc4 100644 --- a/src/components/legend/index.js +++ b/src/components/legend/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/components/legend/style.js b/src/components/legend/style.js index a4ccb56d3cb..0ef881e9af4 100644 --- a/src/components/legend/style.js +++ b/src/components/legend/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/modebar/buttons.js b/src/components/modebar/buttons.js index af0ef757fcd..6558abe05c5 100644 --- a/src/components/modebar/buttons.js +++ b/src/components/modebar/buttons.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/components/modebar/index.js b/src/components/modebar/index.js index 5a0e5fb0618..06a2d6dae7b 100644 --- a/src/components/modebar/index.js +++ b/src/components/modebar/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; exports.manage = require('./manage'); diff --git a/src/components/modebar/manage.js b/src/components/modebar/manage.js index 6743ba5aae5..042be085ebe 100644 --- a/src/components/modebar/manage.js +++ b/src/components/modebar/manage.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var axisIds = require('../../plots/cartesian/axis_ids'); diff --git a/src/components/modebar/modebar.js b/src/components/modebar/modebar.js index 52b9330a0c5..143c3406668 100644 --- a/src/components/modebar/modebar.js +++ b/src/components/modebar/modebar.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/rangeselector/attributes.js b/src/components/rangeselector/attributes.js index 2901fe0b23c..979b1c7b0f7 100644 --- a/src/components/rangeselector/attributes.js +++ b/src/components/rangeselector/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/components/rangeselector/constants.js b/src/components/rangeselector/constants.js index c1c11f54fbd..88f7b2e9cda 100644 --- a/src/components/rangeselector/constants.js +++ b/src/components/rangeselector/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/components/rangeselector/defaults.js b/src/components/rangeselector/defaults.js index a8a6d1b7793..5832f82f027 100644 --- a/src/components/rangeselector/defaults.js +++ b/src/components/rangeselector/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/rangeselector/draw.js b/src/components/rangeselector/draw.js index 7f1bc7e61da..45c6deae4a8 100644 --- a/src/components/rangeselector/draw.js +++ b/src/components/rangeselector/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/rangeselector/get_update_object.js b/src/components/rangeselector/get_update_object.js index 1c927afc2df..64690f9de64 100644 --- a/src/components/rangeselector/get_update_object.js +++ b/src/components/rangeselector/get_update_object.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/rangeselector/index.js b/src/components/rangeselector/index.js index 1b889b07dd3..106874a2558 100644 --- a/src/components/rangeselector/index.js +++ b/src/components/rangeselector/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/rangeslider/attributes.js b/src/components/rangeslider/attributes.js index 40fae6529c9..768df022076 100644 --- a/src/components/rangeslider/attributes.js +++ b/src/components/rangeslider/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorAttributes = require('../color/attributes'); diff --git a/src/components/rangeslider/calc_autorange.js b/src/components/rangeslider/calc_autorange.js index 8fdd00e4d82..e9a5bf61951 100644 --- a/src/components/rangeslider/calc_autorange.js +++ b/src/components/rangeslider/calc_autorange.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var listAxes = require('../../plots/cartesian/axis_ids').list; diff --git a/src/components/rangeslider/constants.js b/src/components/rangeslider/constants.js index 86d541fa6c6..c819ec21582 100644 --- a/src/components/rangeslider/constants.js +++ b/src/components/rangeslider/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/rangeslider/defaults.js b/src/components/rangeslider/defaults.js index 4e0060bcd28..6ad5409dffd 100644 --- a/src/components/rangeslider/defaults.js +++ b/src/components/rangeslider/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/rangeslider/draw.js b/src/components/rangeslider/draw.js index 7b979696b39..348c45697e9 100644 --- a/src/components/rangeslider/draw.js +++ b/src/components/rangeslider/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/rangeslider/helpers.js b/src/components/rangeslider/helpers.js index 4f32a3320c0..d534c4074a8 100644 --- a/src/components/rangeslider/helpers.js +++ b/src/components/rangeslider/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var axisIDs = require('../../plots/cartesian/axis_ids'); diff --git a/src/components/rangeslider/index.js b/src/components/rangeslider/index.js index 68615d402ca..90e569926e9 100644 --- a/src/components/rangeslider/index.js +++ b/src/components/rangeslider/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/rangeslider/oppaxis_attributes.js b/src/components/rangeslider/oppaxis_attributes.js index 02374527b5e..fe0fd478028 100644 --- a/src/components/rangeslider/oppaxis_attributes.js +++ b/src/components/rangeslider/oppaxis_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/components/shapes/attributes.js b/src/components/shapes/attributes.js index 2aad75316c5..9b81133d150 100644 --- a/src/components/shapes/attributes.js +++ b/src/components/shapes/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var annAttrs = require('../annotations/attributes'); diff --git a/src/components/shapes/calc_autorange.js b/src/components/shapes/calc_autorange.js index 4a1a32ae100..7892bceb12f 100644 --- a/src/components/shapes/calc_autorange.js +++ b/src/components/shapes/calc_autorange.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/shapes/constants.js b/src/components/shapes/constants.js index 133df09968a..5a9deb44470 100644 --- a/src/components/shapes/constants.js +++ b/src/components/shapes/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/components/shapes/defaults.js b/src/components/shapes/defaults.js index b899ecc3d45..aba09ed32a0 100644 --- a/src/components/shapes/defaults.js +++ b/src/components/shapes/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/shapes/draw.js b/src/components/shapes/draw.js index 19d53464d83..06050ca72c5 100644 --- a/src/components/shapes/draw.js +++ b/src/components/shapes/draw.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../../registry'); diff --git a/src/components/shapes/draw_newshape/attributes.js b/src/components/shapes/draw_newshape/attributes.js index f9752c61fde..9048dce5b58 100644 --- a/src/components/shapes/draw_newshape/attributes.js +++ b/src/components/shapes/draw_newshape/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var dash = require('../../drawing/attributes').dash; diff --git a/src/components/shapes/draw_newshape/constants.js b/src/components/shapes/draw_newshape/constants.js index 16f4b8b2f2d..28e282eaa67 100644 --- a/src/components/shapes/draw_newshape/constants.js +++ b/src/components/shapes/draw_newshape/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var CIRCLE_SIDES = 32; // should be divisible by 4 diff --git a/src/components/shapes/draw_newshape/defaults.js b/src/components/shapes/draw_newshape/defaults.js index dd330c5ca9a..3043559025d 100644 --- a/src/components/shapes/draw_newshape/defaults.js +++ b/src/components/shapes/draw_newshape/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Color = require('../../color'); diff --git a/src/components/shapes/draw_newshape/display_outlines.js b/src/components/shapes/draw_newshape/display_outlines.js index 17fbd298a33..4d855b3bc51 100644 --- a/src/components/shapes/draw_newshape/display_outlines.js +++ b/src/components/shapes/draw_newshape/display_outlines.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var dragElement = require('../../dragelement'); diff --git a/src/components/shapes/draw_newshape/helpers.js b/src/components/shapes/draw_newshape/helpers.js index cc50e507e29..9e3a6f34fc3 100644 --- a/src/components/shapes/draw_newshape/helpers.js +++ b/src/components/shapes/draw_newshape/helpers.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var parseSvgPath = require('parse-svg-path'); diff --git a/src/components/shapes/draw_newshape/newshapes.js b/src/components/shapes/draw_newshape/newshapes.js index 6444f2a2711..8934e2a5cb7 100644 --- a/src/components/shapes/draw_newshape/newshapes.js +++ b/src/components/shapes/draw_newshape/newshapes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var dragHelpers = require('../../dragelement/helpers'); diff --git a/src/components/shapes/helpers.js b/src/components/shapes/helpers.js index dfb91030981..ca03b9aa935 100644 --- a/src/components/shapes/helpers.js +++ b/src/components/shapes/helpers.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var constants = require('./constants'); diff --git a/src/components/shapes/index.js b/src/components/shapes/index.js index c34e2a73a5c..50e2dc34647 100644 --- a/src/components/shapes/index.js +++ b/src/components/shapes/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var drawModule = require('./draw'); diff --git a/src/components/sliders/attributes.js b/src/components/sliders/attributes.js index aab345e1b9f..d0c78a464d4 100644 --- a/src/components/sliders/attributes.js +++ b/src/components/sliders/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/components/sliders/constants.js b/src/components/sliders/constants.js index 954c3b751f7..b8a9660b183 100644 --- a/src/components/sliders/constants.js +++ b/src/components/sliders/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/components/sliders/defaults.js b/src/components/sliders/defaults.js index 32d07853aa5..44735f46ade 100644 --- a/src/components/sliders/defaults.js +++ b/src/components/sliders/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/sliders/draw.js b/src/components/sliders/draw.js index 5895911d897..5ab3521d572 100644 --- a/src/components/sliders/draw.js +++ b/src/components/sliders/draw.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/sliders/index.js b/src/components/sliders/index.js index 71d154cad68..0f6c0d18733 100644 --- a/src/components/sliders/index.js +++ b/src/components/sliders/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var constants = require('./constants'); diff --git a/src/components/titles/index.js b/src/components/titles/index.js index 8f74047005a..3a260108d67 100644 --- a/src/components/titles/index.js +++ b/src/components/titles/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/updatemenus/attributes.js b/src/components/updatemenus/attributes.js index 85a96a50137..b863dbd2e9b 100644 --- a/src/components/updatemenus/attributes.js +++ b/src/components/updatemenus/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/components/updatemenus/constants.js b/src/components/updatemenus/constants.js index fb81f119eb3..9fdc76fc011 100644 --- a/src/components/updatemenus/constants.js +++ b/src/components/updatemenus/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/components/updatemenus/defaults.js b/src/components/updatemenus/defaults.js index 036693480e1..85ec6cefa57 100644 --- a/src/components/updatemenus/defaults.js +++ b/src/components/updatemenus/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/components/updatemenus/draw.js b/src/components/updatemenus/draw.js index 31415b116e3..826d686fdb5 100644 --- a/src/components/updatemenus/draw.js +++ b/src/components/updatemenus/draw.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/components/updatemenus/index.js b/src/components/updatemenus/index.js index 71d154cad68..0f6c0d18733 100644 --- a/src/components/updatemenus/index.js +++ b/src/components/updatemenus/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var constants = require('./constants'); diff --git a/src/components/updatemenus/scrollbox.js b/src/components/updatemenus/scrollbox.js index 26725147212..1b116d3392f 100644 --- a/src/components/updatemenus/scrollbox.js +++ b/src/components/updatemenus/scrollbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = ScrollBox; diff --git a/src/constants/alignment.js b/src/constants/alignment.js index 185476fceff..09eb4fa88a6 100644 --- a/src/constants/alignment.js +++ b/src/constants/alignment.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // fraction of some size to get to a named position diff --git a/src/constants/axis_placeable_objects.js b/src/constants/axis_placeable_objects.js index d629b5d7c9a..090a23d3766 100644 --- a/src/constants/axis_placeable_objects.js +++ b/src/constants/axis_placeable_objects.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/constants/delta.js b/src/constants/delta.js index 16164e30894..0e303f7c214 100644 --- a/src/constants/delta.js +++ b/src/constants/delta.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/constants/docs.js b/src/constants/docs.js index 51429dcd9ce..e49a6005070 100644 --- a/src/constants/docs.js +++ b/src/constants/docs.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/constants/filter_ops.js b/src/constants/filter_ops.js index 650057d9ad6..e34b106df02 100644 --- a/src/constants/filter_ops.js +++ b/src/constants/filter_ops.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/constants/gl3d_dashes.js b/src/constants/gl3d_dashes.js index 4cb2afb4c94..ffa1835cb25 100644 --- a/src/constants/gl3d_dashes.js +++ b/src/constants/gl3d_dashes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/constants/gl3d_markers.js b/src/constants/gl3d_markers.js index a4ef9561439..c591f73c0d0 100644 --- a/src/constants/gl3d_markers.js +++ b/src/constants/gl3d_markers.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/constants/interactions.js b/src/constants/interactions.js index d67f955aef1..84cbbeb0ba8 100644 --- a/src/constants/interactions.js +++ b/src/constants/interactions.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/constants/numerical.js b/src/constants/numerical.js index 801d403167e..5de0d828c64 100644 --- a/src/constants/numerical.js +++ b/src/constants/numerical.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/constants/xmlns_namespaces.js b/src/constants/xmlns_namespaces.js index e1e1602b463..1c2e6e0a07e 100644 --- a/src/constants/xmlns_namespaces.js +++ b/src/constants/xmlns_namespaces.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/core.js b/src/core.js index 46a3b6c1f17..6f0893fc3b6 100644 --- a/src/core.js +++ b/src/core.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; exports.version = require('./version').version; diff --git a/src/fonts/mathjax_config.js b/src/fonts/mathjax_config.js index e7dbd824e97..71b5d9bde16 100644 --- a/src/fonts/mathjax_config.js +++ b/src/fonts/mathjax_config.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* global MathJax:false */ diff --git a/src/fonts/ploticon.js b/src/fonts/ploticon.js index 93acfc58d01..7c368c69d42 100644 --- a/src/fonts/ploticon.js +++ b/src/fonts/ploticon.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/lib/anchor_utils.js b/src/lib/anchor_utils.js index 52eaaf33bcf..c805cbbdfb0 100644 --- a/src/lib/anchor_utils.js +++ b/src/lib/anchor_utils.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/lib/angles.js b/src/lib/angles.js index 6fcff5c33d9..7179ca7e010 100644 --- a/src/lib/angles.js +++ b/src/lib/angles.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var modModule = require('./mod'); diff --git a/src/lib/array.js b/src/lib/array.js index 03ccef5aed2..19463675a2d 100644 --- a/src/lib/array.js +++ b/src/lib/array.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArray = Array.isArray; diff --git a/src/lib/clean_number.js b/src/lib/clean_number.js index 1ab2bf72716..7a265b48df1 100644 --- a/src/lib/clean_number.js +++ b/src/lib/clean_number.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/clear_gl_canvases.js b/src/lib/clear_gl_canvases.js index d137a9c1319..234ed82a9f7 100644 --- a/src/lib/clear_gl_canvases.js +++ b/src/lib/clear_gl_canvases.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/lib/clear_responsive.js b/src/lib/clear_responsive.js index 82bdbf570da..a2e33f26a1c 100644 --- a/src/lib/clear_responsive.js +++ b/src/lib/clear_responsive.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/lib/coerce.js b/src/lib/coerce.js index a79cc3f7ff8..445dd52748c 100644 --- a/src/lib/coerce.js +++ b/src/lib/coerce.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/dates.js b/src/lib/dates.js index 728df7fbf7f..57a35ea51ac 100644 --- a/src/lib/dates.js +++ b/src/lib/dates.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var timeFormat = require('d3-time-format').timeFormat; diff --git a/src/lib/dom.js b/src/lib/dom.js index 2e65e95cf09..6a13e80c188 100644 --- a/src/lib/dom.js +++ b/src/lib/dom.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/lib/events.js b/src/lib/events.js index 1e61b93f4e8..3ec7f875f05 100644 --- a/src/lib/events.js +++ b/src/lib/events.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; /* global jQuery:false */ diff --git a/src/lib/extend.js b/src/lib/extend.js index 0c2ee4aecc4..d45af81012c 100644 --- a/src/lib/extend.js +++ b/src/lib/extend.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isPlainObject = require('./is_plain_object.js'); diff --git a/src/lib/filter_unique.js b/src/lib/filter_unique.js index e8f532b795e..1e4ad0d75ab 100644 --- a/src/lib/filter_unique.js +++ b/src/lib/filter_unique.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/lib/filter_visible.js b/src/lib/filter_visible.js index a466c794994..3613fcbd7ab 100644 --- a/src/lib/filter_visible.js +++ b/src/lib/filter_visible.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** Filter out object items with visible !== true diff --git a/src/lib/geo_location_utils.js b/src/lib/geo_location_utils.js index 905c4132909..04771902143 100644 --- a/src/lib/geo_location_utils.js +++ b/src/lib/geo_location_utils.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/lib/geojson_utils.js b/src/lib/geojson_utils.js index b153b1dc0dd..599f7d85e6b 100644 --- a/src/lib/geojson_utils.js +++ b/src/lib/geojson_utils.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var BADNUM = require('../constants/numerical').BADNUM; diff --git a/src/lib/geometry2d.js b/src/lib/geometry2d.js index 0dd29bfdf5b..199ca224eda 100644 --- a/src/lib/geometry2d.js +++ b/src/lib/geometry2d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var mod = require('./mod').mod; diff --git a/src/lib/gl_format_color.js b/src/lib/gl_format_color.js index 14039b5b966..1de4d7ba460 100644 --- a/src/lib/gl_format_color.js +++ b/src/lib/gl_format_color.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/gup.js b/src/lib/gup.js index 7a14f5bbc41..94ab6b4f6ed 100644 --- a/src/lib/gup.js +++ b/src/lib/gup.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var identity = require('./identity'); diff --git a/src/lib/identity.js b/src/lib/identity.js index 1534bd31536..3820f042b4e 100644 --- a/src/lib/identity.js +++ b/src/lib/identity.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // Simple helper functions diff --git a/src/lib/increment.js b/src/lib/increment.js index d730f15affc..0e2bf7176b5 100644 --- a/src/lib/increment.js +++ b/src/lib/increment.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = function incrementNumeric(x, delta) { diff --git a/src/lib/index.js b/src/lib/index.js index cb701e56699..532fbca8f80 100644 --- a/src/lib/index.js +++ b/src/lib/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/lib/is_plain_object.js b/src/lib/is_plain_object.js index 50f16d8883e..655716c26ee 100644 --- a/src/lib/is_plain_object.js +++ b/src/lib/is_plain_object.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; // more info: http://stackoverflow.com/questions/18531624/isplainobject-thing diff --git a/src/lib/keyed_container.js b/src/lib/keyed_container.js index d4fd582b668..c0ff69ad7fd 100644 --- a/src/lib/keyed_container.js +++ b/src/lib/keyed_container.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var nestedProperty = require('./nested_property'); diff --git a/src/lib/localize.js b/src/lib/localize.js index 35ac5a8de47..11dd0050f18 100644 --- a/src/lib/localize.js +++ b/src/lib/localize.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../registry'); diff --git a/src/lib/loggers.js b/src/lib/loggers.js index a0f28e64097..9bb581739d9 100644 --- a/src/lib/loggers.js +++ b/src/lib/loggers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* eslint-disable no-console */ diff --git a/src/lib/make_trace_groups.js b/src/lib/make_trace_groups.js index bfe86346e12..b967287c64e 100644 --- a/src/lib/make_trace_groups.js +++ b/src/lib/make_trace_groups.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/lib/matrix.js b/src/lib/matrix.js index 80b673b2da2..d467e013eaf 100644 --- a/src/lib/matrix.js +++ b/src/lib/matrix.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var mat4X4 = require('gl-mat4'); diff --git a/src/lib/mod.js b/src/lib/mod.js index ec96f7f01fd..04d24056bd3 100644 --- a/src/lib/mod.js +++ b/src/lib/mod.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/lib/nested_property.js b/src/lib/nested_property.js index e0c0c5e306a..f54c2951abe 100644 --- a/src/lib/nested_property.js +++ b/src/lib/nested_property.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/noop.js b/src/lib/noop.js index 2fe197d7dab..64d47cea152 100644 --- a/src/lib/noop.js +++ b/src/lib/noop.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // Simple helper functions diff --git a/src/lib/notifier.js b/src/lib/notifier.js index 9bd2f8a9f2f..b675787dbab 100644 --- a/src/lib/notifier.js +++ b/src/lib/notifier.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/lib/override_cursor.js b/src/lib/override_cursor.js index 662da6cffc8..d3f3730c9ce 100644 --- a/src/lib/override_cursor.js +++ b/src/lib/override_cursor.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var setCursor = require('./setcursor'); diff --git a/src/lib/polygon.js b/src/lib/polygon.js index 88ad695eb57..495d22695a2 100644 --- a/src/lib/polygon.js +++ b/src/lib/polygon.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var dot = require('./matrix').dot; diff --git a/src/lib/prepare_regl.js b/src/lib/prepare_regl.js index 9e23227a7b6..9357876f089 100644 --- a/src/lib/prepare_regl.js +++ b/src/lib/prepare_regl.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var showNoWebGlMsg = require('./show_no_webgl_msg'); diff --git a/src/lib/preserve_drawing_buffer.js b/src/lib/preserve_drawing_buffer.js index bdc670045be..e6cd3f5d277 100644 --- a/src/lib/preserve_drawing_buffer.js +++ b/src/lib/preserve_drawing_buffer.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/push_unique.js b/src/lib/push_unique.js index 8a7cf868388..2f06830f81c 100644 --- a/src/lib/push_unique.js +++ b/src/lib/push_unique.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/lib/queue.js b/src/lib/queue.js index b5a5acc6d0d..b2c2c9c8eda 100644 --- a/src/lib/queue.js +++ b/src/lib/queue.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/lib/regex.js b/src/lib/regex.js index d1a89a8c828..15eef630477 100644 --- a/src/lib/regex.js +++ b/src/lib/regex.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/lib/relative_attr.js b/src/lib/relative_attr.js index e589b4e579f..155142e887c 100644 --- a/src/lib/relative_attr.js +++ b/src/lib/relative_attr.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; // ASCEND: chop off the last nesting level - either [] or . - to ascend diff --git a/src/lib/relink_private.js b/src/lib/relink_private.js index def825a51e9..efff341f053 100644 --- a/src/lib/relink_private.js +++ b/src/lib/relink_private.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isArrayOrTypedArray = require('./array').isArrayOrTypedArray; diff --git a/src/lib/search.js b/src/lib/search.js index 57934cefab6..738864f330d 100644 --- a/src/lib/search.js +++ b/src/lib/search.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/setcursor.js b/src/lib/setcursor.js index f542de91531..1b89c42bbfc 100644 --- a/src/lib/setcursor.js +++ b/src/lib/setcursor.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; // works with our CSS cursor classes (see css/_cursor.scss) diff --git a/src/lib/show_no_webgl_msg.js b/src/lib/show_no_webgl_msg.js index 659aad32d1a..c8f75387c26 100644 --- a/src/lib/show_no_webgl_msg.js +++ b/src/lib/show_no_webgl_msg.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Color = require('../components/color'); diff --git a/src/lib/stats.js b/src/lib/stats.js index 4834d8213b8..0ccde97802c 100644 --- a/src/lib/stats.js +++ b/src/lib/stats.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/str2rgbarray.js b/src/lib/str2rgbarray.js index 55f52b16578..74c6b8a4c21 100644 --- a/src/lib/str2rgbarray.js +++ b/src/lib/str2rgbarray.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var rgba = require('color-normalize'); diff --git a/src/lib/svg_text_utils.js b/src/lib/svg_text_utils.js index 0ce49b79f6f..2e82e9e31b4 100644 --- a/src/lib/svg_text_utils.js +++ b/src/lib/svg_text_utils.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; /* global MathJax:false */ diff --git a/src/lib/throttle.js b/src/lib/throttle.js index 71461825fda..8a6d50023e5 100644 --- a/src/lib/throttle.js +++ b/src/lib/throttle.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var timerCache = {}; diff --git a/src/lib/to_log_range.js b/src/lib/to_log_range.js index 71b6f41c529..03a68d1f6a2 100644 --- a/src/lib/to_log_range.js +++ b/src/lib/to_log_range.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/lib/topojson_utils.js b/src/lib/topojson_utils.js index 4625199d8e5..b533b1a71bf 100644 --- a/src/lib/topojson_utils.js +++ b/src/lib/topojson_utils.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var topojsonUtils = module.exports = {}; diff --git a/src/locale-en-us.js b/src/locale-en-us.js index f9ec182da17..785b50b600d 100644 --- a/src/locale-en-us.js +++ b/src/locale-en-us.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/locale-en.js b/src/locale-en.js index 438f386edbc..91ce783acfc 100644 --- a/src/locale-en.js +++ b/src/locale-en.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/plot_api/container_array_match.js b/src/plot_api/container_array_match.js index b5a1acde51a..5505bbf066e 100644 --- a/src/plot_api/container_array_match.js +++ b/src/plot_api/container_array_match.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../registry'); diff --git a/src/plot_api/edit_types.js b/src/plot_api/edit_types.js index 12aacb8ad8b..8fe27acb178 100644 --- a/src/plot_api/edit_types.js +++ b/src/plot_api/edit_types.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/plot_api/helpers.js b/src/plot_api/helpers.js index 98a3246e00a..aa1405ce738 100644 --- a/src/plot_api/helpers.js +++ b/src/plot_api/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plot_api/index.js b/src/plot_api/index.js index fce2a4d7975..20ba695915e 100644 --- a/src/plot_api/index.js +++ b/src/plot_api/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var main = require('./plot_api'); diff --git a/src/plot_api/manage_arrays.js b/src/plot_api/manage_arrays.js index a7c5bb8b1dd..42a6f21f10c 100644 --- a/src/plot_api/manage_arrays.js +++ b/src/plot_api/manage_arrays.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isPlainObject = require('../lib/is_plain_object'); diff --git a/src/plot_api/plot_api.js b/src/plot_api/plot_api.js index ce1a4dfaab8..5707d741951 100644 --- a/src/plot_api/plot_api.js +++ b/src/plot_api/plot_api.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plot_api/plot_config.js b/src/plot_api/plot_config.js index 9098346de8f..e79eabe8ff6 100644 --- a/src/plot_api/plot_config.js +++ b/src/plot_api/plot_config.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/plot_api/plot_schema.js b/src/plot_api/plot_schema.js index cfdaa67c823..8833e688fd0 100644 --- a/src/plot_api/plot_schema.js +++ b/src/plot_api/plot_schema.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../registry'); diff --git a/src/plot_api/plot_template.js b/src/plot_api/plot_template.js index 721291121f9..8dd68d01e66 100644 --- a/src/plot_api/plot_template.js +++ b/src/plot_api/plot_template.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../lib'); diff --git a/src/plot_api/subroutines.js b/src/plot_api/subroutines.js index 7c78b2026cc..20a7a59f85a 100644 --- a/src/plot_api/subroutines.js +++ b/src/plot_api/subroutines.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plot_api/template_api.js b/src/plot_api/template_api.js index 172e3040063..4157e6c7b93 100644 --- a/src/plot_api/template_api.js +++ b/src/plot_api/template_api.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../lib'); diff --git a/src/plot_api/to_image.js b/src/plot_api/to_image.js index 76046d5e31a..97c752b4b0c 100644 --- a/src/plot_api/to_image.js +++ b/src/plot_api/to_image.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plot_api/validate.js b/src/plot_api/validate.js index 4e85692122a..a1d692b684f 100644 --- a/src/plot_api/validate.js +++ b/src/plot_api/validate.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/plots/animation_attributes.js b/src/plots/animation_attributes.js index 80456c08769..6ae1e830a86 100644 --- a/src/plots/animation_attributes.js +++ b/src/plots/animation_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/plots/array_container_defaults.js b/src/plots/array_container_defaults.js index 65f8c41ec1d..2ad41a2bd19 100644 --- a/src/plots/array_container_defaults.js +++ b/src/plots/array_container_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/plots/attributes.js b/src/plots/attributes.js index beeefef41b1..20ff1c2a3b3 100644 --- a/src/plots/attributes.js +++ b/src/plots/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fxAttrs = require('../components/fx/attributes'); diff --git a/src/plots/cartesian/align_period.js b/src/plots/cartesian/align_period.js index 1b1aa1fa7c0..7a72f6491cf 100644 --- a/src/plots/cartesian/align_period.js +++ b/src/plots/cartesian/align_period.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plots/cartesian/attributes.js b/src/plots/cartesian/attributes.js index e9944306ad1..801b636a4c0 100644 --- a/src/plots/cartesian/attributes.js +++ b/src/plots/cartesian/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/plots/cartesian/autorange.js b/src/plots/cartesian/autorange.js index 150d2fc4fe8..5d27c3bfea6 100644 --- a/src/plots/cartesian/autorange.js +++ b/src/plots/cartesian/autorange.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js index bd53e4364ff..d22fb26ded8 100644 --- a/src/plots/cartesian/axes.js +++ b/src/plots/cartesian/axes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/cartesian/axis_autotype.js b/src/plots/cartesian/axis_autotype.js index d62acfd6fcf..8186caf7839 100644 --- a/src/plots/cartesian/axis_autotype.js +++ b/src/plots/cartesian/axis_autotype.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plots/cartesian/axis_defaults.js b/src/plots/cartesian/axis_defaults.js index 9fc7ac40a15..de43db22e93 100644 --- a/src/plots/cartesian/axis_defaults.js +++ b/src/plots/cartesian/axis_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plots/cartesian/axis_ids.js b/src/plots/cartesian/axis_ids.js index 74f57e4346b..efb6fcf7147 100644 --- a/src/plots/cartesian/axis_ids.js +++ b/src/plots/cartesian/axis_ids.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/plots/cartesian/category_order_defaults.js b/src/plots/cartesian/category_order_defaults.js index dcc2b0c6e45..b75fa57898b 100644 --- a/src/plots/cartesian/category_order_defaults.js +++ b/src/plots/cartesian/category_order_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; function findCategories(ax, opts) { diff --git a/src/plots/cartesian/clean_ticks.js b/src/plots/cartesian/clean_ticks.js index 3ca0a9fa996..edf4284aa58 100644 --- a/src/plots/cartesian/clean_ticks.js +++ b/src/plots/cartesian/clean_ticks.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plots/cartesian/constants.js b/src/plots/cartesian/constants.js index f7b9d435148..dacdf300b61 100644 --- a/src/plots/cartesian/constants.js +++ b/src/plots/cartesian/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var counterRegex = require('../../lib/regex').counter; diff --git a/src/plots/cartesian/constraints.js b/src/plots/cartesian/constraints.js index 55e7d7d67f0..27596ff4eb9 100644 --- a/src/plots/cartesian/constraints.js +++ b/src/plots/cartesian/constraints.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/cartesian/dragbox.js b/src/plots/cartesian/dragbox.js index 6a406cf5a71..8ca85e25ed6 100644 --- a/src/plots/cartesian/dragbox.js +++ b/src/plots/cartesian/dragbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/cartesian/graph_interact.js b/src/plots/cartesian/graph_interact.js index 5b66d52bc26..a7e08ea41dd 100644 --- a/src/plots/cartesian/graph_interact.js +++ b/src/plots/cartesian/graph_interact.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/cartesian/handle_outline.js b/src/plots/cartesian/handle_outline.js index c3b325ffde5..23d39408dc9 100644 --- a/src/plots/cartesian/handle_outline.js +++ b/src/plots/cartesian/handle_outline.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; function clearOutlineControllers(gd) { diff --git a/src/plots/cartesian/helpers.js b/src/plots/cartesian/helpers.js index 40ee8e2b298..35fc05c4af4 100644 --- a/src/plots/cartesian/helpers.js +++ b/src/plots/cartesian/helpers.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var strTranslate = require('../../lib').strTranslate; diff --git a/src/plots/cartesian/include_components.js b/src/plots/cartesian/include_components.js index c699716b5ff..ad27aeab79c 100644 --- a/src/plots/cartesian/include_components.js +++ b/src/plots/cartesian/include_components.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../../registry'); diff --git a/src/plots/cartesian/index.js b/src/plots/cartesian/index.js index c1e3b607989..04b38ed6735 100644 --- a/src/plots/cartesian/index.js +++ b/src/plots/cartesian/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/cartesian/layout_attributes.js b/src/plots/cartesian/layout_attributes.js index 822abfdbfc9..ea2b420c75e 100644 --- a/src/plots/cartesian/layout_attributes.js +++ b/src/plots/cartesian/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../font_attributes'); diff --git a/src/plots/cartesian/layout_defaults.js b/src/plots/cartesian/layout_defaults.js index f3a23402048..c500997541b 100644 --- a/src/plots/cartesian/layout_defaults.js +++ b/src/plots/cartesian/layout_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/cartesian/line_grid_defaults.js b/src/plots/cartesian/line_grid_defaults.js index c4cde9d2e4a..5aa8b1f325d 100644 --- a/src/plots/cartesian/line_grid_defaults.js +++ b/src/plots/cartesian/line_grid_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorMix = require('tinycolor2').mix; diff --git a/src/plots/cartesian/position_defaults.js b/src/plots/cartesian/position_defaults.js index fa43a081ef2..d6fea08172e 100644 --- a/src/plots/cartesian/position_defaults.js +++ b/src/plots/cartesian/position_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/plots/cartesian/scale_zoom.js b/src/plots/cartesian/scale_zoom.js index a29ab53b954..cd08f4eed8b 100644 --- a/src/plots/cartesian/scale_zoom.js +++ b/src/plots/cartesian/scale_zoom.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var FROM_BL = require('../../constants/alignment').FROM_BL; diff --git a/src/plots/cartesian/select.js b/src/plots/cartesian/select.js index 2c6abc16e95..ebab65a69a8 100644 --- a/src/plots/cartesian/select.js +++ b/src/plots/cartesian/select.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var polybool = require('polybooljs'); diff --git a/src/plots/cartesian/set_convert.js b/src/plots/cartesian/set_convert.js index 5ae4eb51acf..9a696633554 100644 --- a/src/plots/cartesian/set_convert.js +++ b/src/plots/cartesian/set_convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/cartesian/tick_label_defaults.js b/src/plots/cartesian/tick_label_defaults.js index d9cc115f428..9ac34542387 100644 --- a/src/plots/cartesian/tick_label_defaults.js +++ b/src/plots/cartesian/tick_label_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/cartesian/tick_mark_defaults.js b/src/plots/cartesian/tick_mark_defaults.js index 6a6848fadfc..88e499decd0 100644 --- a/src/plots/cartesian/tick_mark_defaults.js +++ b/src/plots/cartesian/tick_mark_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/cartesian/tick_value_defaults.js b/src/plots/cartesian/tick_value_defaults.js index aabda43fbc7..1b6a06902b3 100644 --- a/src/plots/cartesian/tick_value_defaults.js +++ b/src/plots/cartesian/tick_value_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var cleanTicks = require('./clean_ticks'); diff --git a/src/plots/cartesian/transition_axes.js b/src/plots/cartesian/transition_axes.js index dc82221f91b..f98969de352 100644 --- a/src/plots/cartesian/transition_axes.js +++ b/src/plots/cartesian/transition_axes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/cartesian/type_defaults.js b/src/plots/cartesian/type_defaults.js index c9a47f8d97b..1d1b0e03217 100644 --- a/src/plots/cartesian/type_defaults.js +++ b/src/plots/cartesian/type_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var traceIs = require('../../registry').traceIs; diff --git a/src/plots/command.js b/src/plots/command.js index f4cd8ba574a..94c3105bf9c 100644 --- a/src/plots/command.js +++ b/src/plots/command.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../registry'); diff --git a/src/plots/domain.js b/src/plots/domain.js index 28b6d441f79..55a63c53e11 100644 --- a/src/plots/domain.js +++ b/src/plots/domain.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var extendFlat = require('../lib/extend').extendFlat; diff --git a/src/plots/font_attributes.js b/src/plots/font_attributes.js index 42c060b424b..68ea0b1a11f 100644 --- a/src/plots/font_attributes.js +++ b/src/plots/font_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/plots/frame_attributes.js b/src/plots/frame_attributes.js index fd16d5d59b7..fdb3c53b928 100644 --- a/src/plots/frame_attributes.js +++ b/src/plots/frame_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/plots/geo/constants.js b/src/plots/geo/constants.js index 8ec1651196f..ccd39c19298 100644 --- a/src/plots/geo/constants.js +++ b/src/plots/geo/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // projection names to d3 function name diff --git a/src/plots/geo/geo.js b/src/plots/geo/geo.js index b84d4d6c9bf..c5789f600f2 100644 --- a/src/plots/geo/geo.js +++ b/src/plots/geo/geo.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* global PlotlyGeoAssets:false */ diff --git a/src/plots/geo/index.js b/src/plots/geo/index.js index c38b2ea2026..1ccdff7bf6a 100644 --- a/src/plots/geo/index.js +++ b/src/plots/geo/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var getSubplotCalcData = require('../../plots/get_data').getSubplotCalcData; diff --git a/src/plots/geo/layout_attributes.js b/src/plots/geo/layout_attributes.js index ac70bf65072..8f688cedbd5 100644 --- a/src/plots/geo/layout_attributes.js +++ b/src/plots/geo/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorAttrs = require('../../components/color/attributes'); diff --git a/src/plots/geo/layout_defaults.js b/src/plots/geo/layout_defaults.js index 5d045d809ca..fd5acf607fa 100644 --- a/src/plots/geo/layout_defaults.js +++ b/src/plots/geo/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/geo/projections.js b/src/plots/geo/projections.js index 512194ae6c7..45698e2bf08 100644 --- a/src/plots/geo/projections.js +++ b/src/plots/geo/projections.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - /* * Generated by https://github.com/etpinard/d3-geo-projection-picker * diff --git a/src/plots/geo/zoom.js b/src/plots/geo/zoom.js index a6bfc76acf8..d486122ddbc 100644 --- a/src/plots/geo/zoom.js +++ b/src/plots/geo/zoom.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/get_data.js b/src/plots/get_data.js index 78fcb7d2149..5561692960e 100644 --- a/src/plots/get_data.js +++ b/src/plots/get_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../registry'); diff --git a/src/plots/gl2d/camera.js b/src/plots/gl2d/camera.js index 60f21f0fcec..522a969f31e 100644 --- a/src/plots/gl2d/camera.js +++ b/src/plots/gl2d/camera.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var mouseChange = require('mouse-change'); diff --git a/src/plots/gl2d/convert.js b/src/plots/gl2d/convert.js index 937790c718d..34b79d17d6e 100644 --- a/src/plots/gl2d/convert.js +++ b/src/plots/gl2d/convert.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Axes = require('../cartesian/axes'); diff --git a/src/plots/gl2d/index.js b/src/plots/gl2d/index.js index 83b465e5dfd..efb10fe9045 100644 --- a/src/plots/gl2d/index.js +++ b/src/plots/gl2d/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var overrideAll = require('../../plot_api/edit_types').overrideAll; diff --git a/src/plots/gl2d/scene2d.js b/src/plots/gl2d/scene2d.js index a4ecc52cfbf..fac064f51db 100644 --- a/src/plots/gl2d/scene2d.js +++ b/src/plots/gl2d/scene2d.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../../registry'); diff --git a/src/plots/gl3d/index.js b/src/plots/gl3d/index.js index 6fec207a1aa..089e3db9551 100644 --- a/src/plots/gl3d/index.js +++ b/src/plots/gl3d/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var overrideAll = require('../../plot_api/edit_types').overrideAll; diff --git a/src/plots/gl3d/layout/attributes.js b/src/plots/gl3d/layout/attributes.js index 3418b700f82..c81105a3377 100644 --- a/src/plots/gl3d/layout/attributes.js +++ b/src/plots/gl3d/layout/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/plots/gl3d/layout/axis_attributes.js b/src/plots/gl3d/layout/axis_attributes.js index 3c5543c7cbe..64520c93dad 100644 --- a/src/plots/gl3d/layout/axis_attributes.js +++ b/src/plots/gl3d/layout/axis_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Color = require('../../../components/color'); diff --git a/src/plots/gl3d/layout/axis_defaults.js b/src/plots/gl3d/layout/axis_defaults.js index 8590f90e0fb..3c60b004a51 100644 --- a/src/plots/gl3d/layout/axis_defaults.js +++ b/src/plots/gl3d/layout/axis_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var colorMix = require('tinycolor2').mix; diff --git a/src/plots/gl3d/layout/convert.js b/src/plots/gl3d/layout/convert.js index d0a81e1686c..b3bc7777d37 100644 --- a/src/plots/gl3d/layout/convert.js +++ b/src/plots/gl3d/layout/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var str2RgbaArray = require('../../../lib/str2rgbarray'); diff --git a/src/plots/gl3d/layout/defaults.js b/src/plots/gl3d/layout/defaults.js index 158e89f140b..311ad2fe919 100644 --- a/src/plots/gl3d/layout/defaults.js +++ b/src/plots/gl3d/layout/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../../lib'); diff --git a/src/plots/gl3d/layout/layout_attributes.js b/src/plots/gl3d/layout/layout_attributes.js index e508e8f481f..b5b6630693d 100644 --- a/src/plots/gl3d/layout/layout_attributes.js +++ b/src/plots/gl3d/layout/layout_attributes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var gl3dAxisAttrs = require('./axis_attributes'); diff --git a/src/plots/gl3d/layout/spikes.js b/src/plots/gl3d/layout/spikes.js index 1e0725566b1..6d51534f075 100644 --- a/src/plots/gl3d/layout/spikes.js +++ b/src/plots/gl3d/layout/spikes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var str2RGBArray = require('../../../lib/str2rgbarray'); diff --git a/src/plots/gl3d/layout/tick_marks.js b/src/plots/gl3d/layout/tick_marks.js index c0803ac168d..e45e93cb8b0 100644 --- a/src/plots/gl3d/layout/tick_marks.js +++ b/src/plots/gl3d/layout/tick_marks.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - /* eslint block-scoped-var: 0*/ /* eslint no-redeclare: 0*/ diff --git a/src/plots/gl3d/project.js b/src/plots/gl3d/project.js index b200f8c31f0..f5d5712d664 100644 --- a/src/plots/gl3d/project.js +++ b/src/plots/gl3d/project.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; function xformMatrix(m, v) { diff --git a/src/plots/gl3d/scene.js b/src/plots/gl3d/scene.js index b9895c6a918..6e89d682e5d 100644 --- a/src/plots/gl3d/scene.js +++ b/src/plots/gl3d/scene.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var glPlot3d = require('gl-plot3d'); diff --git a/src/plots/gl3d/zip3.js b/src/plots/gl3d/zip3.js index e231c3f18c0..375ae9a900d 100644 --- a/src/plots/gl3d/zip3.js +++ b/src/plots/gl3d/zip3.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function zip3(x, y, z, len) { diff --git a/src/plots/layout_attributes.js b/src/plots/layout_attributes.js index b00419686d8..545bac3845b 100644 --- a/src/plots/layout_attributes.js +++ b/src/plots/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('./font_attributes'); diff --git a/src/plots/mapbox/constants.js b/src/plots/mapbox/constants.js index 7675d821b46..2568b89a6fb 100644 --- a/src/plots/mapbox/constants.js +++ b/src/plots/mapbox/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var requiredVersion = '1.10.1'; diff --git a/src/plots/mapbox/convert_text_opts.js b/src/plots/mapbox/convert_text_opts.js index bf5214c1d5c..5aefd1490c1 100644 --- a/src/plots/mapbox/convert_text_opts.js +++ b/src/plots/mapbox/convert_text_opts.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/mapbox/index.js b/src/plots/mapbox/index.js index b2e8569b740..a5b3fed70fc 100644 --- a/src/plots/mapbox/index.js +++ b/src/plots/mapbox/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var mapboxgl = require('mapbox-gl'); diff --git a/src/plots/mapbox/layers.js b/src/plots/mapbox/layers.js index cff245f65db..1078e9170a6 100644 --- a/src/plots/mapbox/layers.js +++ b/src/plots/mapbox/layers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/mapbox/layout_attributes.js b/src/plots/mapbox/layout_attributes.js index efe8a8602a1..61474d63184 100644 --- a/src/plots/mapbox/layout_attributes.js +++ b/src/plots/mapbox/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/mapbox/layout_defaults.js b/src/plots/mapbox/layout_defaults.js index f5c809c1224..e623c81a0aa 100644 --- a/src/plots/mapbox/layout_defaults.js +++ b/src/plots/mapbox/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/mapbox/mapbox.js b/src/plots/mapbox/mapbox.js index a9ff98bd545..dd3565dbce9 100644 --- a/src/plots/mapbox/mapbox.js +++ b/src/plots/mapbox/mapbox.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var mapboxgl = require('mapbox-gl'); diff --git a/src/plots/pad_attributes.js b/src/plots/pad_attributes.js index 294d9d919fc..142f6b41a3c 100644 --- a/src/plots/pad_attributes.js +++ b/src/plots/pad_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/plots/plots.js b/src/plots/plots.js index 2174bbc756c..087f12adf7b 100644 --- a/src/plots/plots.js +++ b/src/plots/plots.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/polar/constants.js b/src/plots/polar/constants.js index a1233e23077..b22c205b154 100644 --- a/src/plots/polar/constants.js +++ b/src/plots/polar/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/plots/polar/helpers.js b/src/plots/polar/helpers.js index 93046e892a5..7ec98bd883a 100644 --- a/src/plots/polar/helpers.js +++ b/src/plots/polar/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/polar/index.js b/src/plots/polar/index.js index c086883d103..596b2a8cf45 100644 --- a/src/plots/polar/index.js +++ b/src/plots/polar/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var getSubplotCalcData = require('../get_data').getSubplotCalcData; diff --git a/src/plots/polar/layout_attributes.js b/src/plots/polar/layout_attributes.js index a72d3574601..be506ad87d7 100644 --- a/src/plots/polar/layout_attributes.js +++ b/src/plots/polar/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorAttrs = require('../../components/color/attributes'); diff --git a/src/plots/polar/layout_defaults.js b/src/plots/polar/layout_defaults.js index c8d0442c011..6f29c768b56 100644 --- a/src/plots/polar/layout_defaults.js +++ b/src/plots/polar/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/polar/polar.js b/src/plots/polar/polar.js index 90cf88487af..24e6efcf0c3 100644 --- a/src/plots/polar/polar.js +++ b/src/plots/polar/polar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/plots/polar/set_convert.js b/src/plots/polar/set_convert.js index 9d542fcd38e..d150e61af5c 100644 --- a/src/plots/polar/set_convert.js +++ b/src/plots/polar/set_convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/plots/subplot_defaults.js b/src/plots/subplot_defaults.js index 65752a16c36..9c665278444 100644 --- a/src/plots/subplot_defaults.js +++ b/src/plots/subplot_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../lib'); diff --git a/src/plots/template_attributes.js b/src/plots/template_attributes.js index 11325567b8f..efcaba0c77c 100644 --- a/src/plots/template_attributes.js +++ b/src/plots/template_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var FORMAT_LINK = require('../constants/docs').FORMAT_LINK; diff --git a/src/plots/ternary/index.js b/src/plots/ternary/index.js index fd33c2f1135..2f65f155961 100644 --- a/src/plots/ternary/index.js +++ b/src/plots/ternary/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Ternary = require('./ternary'); diff --git a/src/plots/ternary/layout_attributes.js b/src/plots/ternary/layout_attributes.js index 67fdf20850a..20975423d90 100644 --- a/src/plots/ternary/layout_attributes.js +++ b/src/plots/ternary/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorAttrs = require('../../components/color/attributes'); diff --git a/src/plots/ternary/layout_defaults.js b/src/plots/ternary/layout_defaults.js index 7e7c21b2e15..31ad2f873a0 100644 --- a/src/plots/ternary/layout_defaults.js +++ b/src/plots/ternary/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Color = require('../../components/color'); diff --git a/src/plots/ternary/ternary.js b/src/plots/ternary/ternary.js index 3bcafaf2b53..004cc8ef202 100644 --- a/src/plots/ternary/ternary.js +++ b/src/plots/ternary/ternary.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/registry.js b/src/registry.js index f3b0feb2477..6fc6bf4d981 100644 --- a/src/registry.js +++ b/src/registry.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Loggers = require('./lib/loggers'); diff --git a/src/snapshot/cloneplot.js b/src/snapshot/cloneplot.js index 94a754a1833..b210c6d673e 100644 --- a/src/snapshot/cloneplot.js +++ b/src/snapshot/cloneplot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../registry'); diff --git a/src/snapshot/download.js b/src/snapshot/download.js index 0d11a12af52..bf483c2b2bf 100644 --- a/src/snapshot/download.js +++ b/src/snapshot/download.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/snapshot/filesaver.js b/src/snapshot/filesaver.js index 60a09ac1f87..cd4e58b2044 100644 --- a/src/snapshot/filesaver.js +++ b/src/snapshot/filesaver.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/snapshot/helpers.js b/src/snapshot/helpers.js index ede584c7e06..09190b49d86 100644 --- a/src/snapshot/helpers.js +++ b/src/snapshot/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../registry'); diff --git a/src/snapshot/index.js b/src/snapshot/index.js index bf4990ce67c..dada5fb4cb6 100644 --- a/src/snapshot/index.js +++ b/src/snapshot/index.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var helpers = require('./helpers'); diff --git a/src/snapshot/svgtoimg.js b/src/snapshot/svgtoimg.js index 835e8d8932c..51968b136f6 100644 --- a/src/snapshot/svgtoimg.js +++ b/src/snapshot/svgtoimg.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/snapshot/toimage.js b/src/snapshot/toimage.js index cc42e7b59ca..82390411497 100644 --- a/src/snapshot/toimage.js +++ b/src/snapshot/toimage.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var EventEmitter = require('events').EventEmitter; diff --git a/src/snapshot/tosvg.js b/src/snapshot/tosvg.js index 941cd3ac5bd..c391cc02dfd 100644 --- a/src/snapshot/tosvg.js +++ b/src/snapshot/tosvg.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/bar/arrays_to_calcdata.js b/src/traces/bar/arrays_to_calcdata.js index 6db135d69e6..f9613d11e8f 100644 --- a/src/traces/bar/arrays_to_calcdata.js +++ b/src/traces/bar/arrays_to_calcdata.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/bar/attributes.js b/src/traces/bar/attributes.js index e8e76cf4347..01b0b752d18 100644 --- a/src/traces/bar/attributes.js +++ b/src/traces/bar/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterAttrs = require('../scatter/attributes'); diff --git a/src/traces/bar/calc.js b/src/traces/bar/calc.js index 8bf8c244705..8877112eeee 100644 --- a/src/traces/bar/calc.js +++ b/src/traces/bar/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/bar/constants.js b/src/traces/bar/constants.js index cfe1a5f4402..3d56185f909 100644 --- a/src/traces/bar/constants.js +++ b/src/traces/bar/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/traces/bar/cross_trace_calc.js b/src/traces/bar/cross_trace_calc.js index e7459b545e6..00e14812244 100644 --- a/src/traces/bar/cross_trace_calc.js +++ b/src/traces/bar/cross_trace_calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/bar/defaults.js b/src/traces/bar/defaults.js index eb3dd0e4708..631afc4d16a 100644 --- a/src/traces/bar/defaults.js +++ b/src/traces/bar/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/bar/event_data.js b/src/traces/bar/event_data.js index 54e350c2bb7..fb20f16b065 100644 --- a/src/traces/bar/event_data.js +++ b/src/traces/bar/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt, trace) { diff --git a/src/traces/bar/helpers.js b/src/traces/bar/helpers.js index 86764738f39..011c866b479 100644 --- a/src/traces/bar/helpers.js +++ b/src/traces/bar/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/bar/hover.js b/src/traces/bar/hover.js index 410064e21c7..ac9ee706db8 100644 --- a/src/traces/bar/hover.js +++ b/src/traces/bar/hover.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Fx = require('../../components/fx'); diff --git a/src/traces/bar/index.js b/src/traces/bar/index.js index 38b35a42d2d..42188737f6d 100644 --- a/src/traces/bar/index.js +++ b/src/traces/bar/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/bar/layout_attributes.js b/src/traces/bar/layout_attributes.js index bf296676c19..eb47d03ccc4 100644 --- a/src/traces/bar/layout_attributes.js +++ b/src/traces/bar/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/traces/bar/layout_defaults.js b/src/traces/bar/layout_defaults.js index ca6b8b39a7e..99324539921 100644 --- a/src/traces/bar/layout_defaults.js +++ b/src/traces/bar/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/bar/plot.js b/src/traces/bar/plot.js index b5827dcd3fe..fdc047eafc0 100644 --- a/src/traces/bar/plot.js +++ b/src/traces/bar/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/bar/select.js b/src/traces/bar/select.js index 5870550044c..a41a26639ea 100644 --- a/src/traces/bar/select.js +++ b/src/traces/bar/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function selectPoints(searchInfo, selectionTester) { diff --git a/src/traces/bar/sieve.js b/src/traces/bar/sieve.js index 481fdec848f..14e994f34a1 100644 --- a/src/traces/bar/sieve.js +++ b/src/traces/bar/sieve.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = Sieve; diff --git a/src/traces/bar/style.js b/src/traces/bar/style.js index b45c386aa15..b5a587d8988 100644 --- a/src/traces/bar/style.js +++ b/src/traces/bar/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/bar/style_defaults.js b/src/traces/bar/style_defaults.js index 195ea951c00..20378dc7126 100644 --- a/src/traces/bar/style_defaults.js +++ b/src/traces/bar/style_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/bar/uniform_text.js b/src/traces/bar/uniform_text.js index a6adeb783c2..b40ab37c9e1 100644 --- a/src/traces/bar/uniform_text.js +++ b/src/traces/bar/uniform_text.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/barpolar/attributes.js b/src/traces/barpolar/attributes.js index bf331cf2bd3..3b4704ba985 100644 --- a/src/traces/barpolar/attributes.js +++ b/src/traces/barpolar/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/barpolar/calc.js b/src/traces/barpolar/calc.js index afb936e0210..b9f605a4b92 100644 --- a/src/traces/barpolar/calc.js +++ b/src/traces/barpolar/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hasColorscale = require('../../components/colorscale/helpers').hasColorscale; diff --git a/src/traces/barpolar/defaults.js b/src/traces/barpolar/defaults.js index b456f4ea309..bca5588817b 100644 --- a/src/traces/barpolar/defaults.js +++ b/src/traces/barpolar/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/barpolar/hover.js b/src/traces/barpolar/hover.js index e0d9cedede1..ab2b084e983 100644 --- a/src/traces/barpolar/hover.js +++ b/src/traces/barpolar/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Fx = require('../../components/fx'); diff --git a/src/traces/barpolar/index.js b/src/traces/barpolar/index.js index ac39193a93f..63386e660e4 100644 --- a/src/traces/barpolar/index.js +++ b/src/traces/barpolar/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/barpolar/layout_attributes.js b/src/traces/barpolar/layout_attributes.js index 98d5671feab..5bea2dc7641 100644 --- a/src/traces/barpolar/layout_attributes.js +++ b/src/traces/barpolar/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/barpolar/layout_defaults.js b/src/traces/barpolar/layout_defaults.js index fe5ca8f08d2..20db25c0ece 100644 --- a/src/traces/barpolar/layout_defaults.js +++ b/src/traces/barpolar/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/barpolar/plot.js b/src/traces/barpolar/plot.js index bbb81437e86..41015dc3c08 100644 --- a/src/traces/barpolar/plot.js +++ b/src/traces/barpolar/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/box/attributes.js b/src/traces/box/attributes.js index 9cafe4f1d63..0afc351edd7 100644 --- a/src/traces/box/attributes.js +++ b/src/traces/box/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterAttrs = require('../scatter/attributes'); diff --git a/src/traces/box/calc.js b/src/traces/box/calc.js index adc950481c4..f08e80f8713 100644 --- a/src/traces/box/calc.js +++ b/src/traces/box/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/box/cross_trace_calc.js b/src/traces/box/cross_trace_calc.js index fdb1f6b0353..34eb60528ac 100644 --- a/src/traces/box/cross_trace_calc.js +++ b/src/traces/box/cross_trace_calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/box/defaults.js b/src/traces/box/defaults.js index 0f0e716ee57..0a5c66c9f89 100644 --- a/src/traces/box/defaults.js +++ b/src/traces/box/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/box/event_data.js b/src/traces/box/event_data.js index 9176ee0e699..4ee9bd70d9f 100644 --- a/src/traces/box/event_data.js +++ b/src/traces/box/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt) { diff --git a/src/traces/box/hover.js b/src/traces/box/hover.js index 5742c380143..901ddb3399e 100644 --- a/src/traces/box/hover.js +++ b/src/traces/box/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/box/index.js b/src/traces/box/index.js index 49276acebad..0d51ea1d885 100644 --- a/src/traces/box/index.js +++ b/src/traces/box/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/box/layout_attributes.js b/src/traces/box/layout_attributes.js index 3c9b465a02b..d6bfde5b29b 100644 --- a/src/traces/box/layout_attributes.js +++ b/src/traces/box/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/traces/box/layout_defaults.js b/src/traces/box/layout_defaults.js index e00e5de7509..e8aa0e9024e 100644 --- a/src/traces/box/layout_defaults.js +++ b/src/traces/box/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/box/plot.js b/src/traces/box/plot.js index 297a3d336c1..d62c00079f5 100644 --- a/src/traces/box/plot.js +++ b/src/traces/box/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/box/select.js b/src/traces/box/select.js index fac4c5c3cfd..e61f1522e4f 100644 --- a/src/traces/box/select.js +++ b/src/traces/box/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function selectPoints(searchInfo, selectionTester) { diff --git a/src/traces/box/style.js b/src/traces/box/style.js index 55dc2a2f3ba..5e28eeefa27 100644 --- a/src/traces/box/style.js +++ b/src/traces/box/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/candlestick/attributes.js b/src/traces/candlestick/attributes.js index 51f843b04da..3e310a76139 100644 --- a/src/traces/candlestick/attributes.js +++ b/src/traces/candlestick/attributes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var extendFlat = require('../../lib').extendFlat; diff --git a/src/traces/candlestick/calc.js b/src/traces/candlestick/calc.js index f0827a9f819..b8f7ec316b8 100644 --- a/src/traces/candlestick/calc.js +++ b/src/traces/candlestick/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/candlestick/defaults.js b/src/traces/candlestick/defaults.js index 026d3f7f9b9..2b69f033bb5 100644 --- a/src/traces/candlestick/defaults.js +++ b/src/traces/candlestick/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/candlestick/index.js b/src/traces/candlestick/index.js index b6604f75559..fd621fbd66a 100644 --- a/src/traces/candlestick/index.js +++ b/src/traces/candlestick/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/carpet/ab_defaults.js b/src/traces/carpet/ab_defaults.js index cb15e41d0ba..2f206e55f85 100644 --- a/src/traces/carpet/ab_defaults.js +++ b/src/traces/carpet/ab_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var handleAxisDefaults = require('./axis_defaults'); diff --git a/src/traces/carpet/array_minmax.js b/src/traces/carpet/array_minmax.js index eb7c337fbf5..00ae505b6e3 100644 --- a/src/traces/carpet/array_minmax.js +++ b/src/traces/carpet/array_minmax.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArrayOrTypedArray = require('../../lib').isArrayOrTypedArray; diff --git a/src/traces/carpet/attributes.js b/src/traces/carpet/attributes.js index 49fe3e20e6e..3d947048121 100644 --- a/src/traces/carpet/attributes.js +++ b/src/traces/carpet/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/traces/carpet/axis_aligned_line.js b/src/traces/carpet/axis_aligned_line.js index c3e7f4802ac..ee9341cf302 100644 --- a/src/traces/carpet/axis_aligned_line.js +++ b/src/traces/carpet/axis_aligned_line.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArrayOrTypedArray = require('../../lib').isArrayOrTypedArray; diff --git a/src/traces/carpet/axis_attributes.js b/src/traces/carpet/axis_attributes.js index 986eaa470f1..97b129f7dc6 100644 --- a/src/traces/carpet/axis_attributes.js +++ b/src/traces/carpet/axis_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/traces/carpet/axis_defaults.js b/src/traces/carpet/axis_defaults.js index 67360612fc7..e5dd2259a58 100644 --- a/src/traces/carpet/axis_defaults.js +++ b/src/traces/carpet/axis_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var carpetAttrs = require('./attributes'); diff --git a/src/traces/carpet/calc.js b/src/traces/carpet/calc.js index 5a4fc7f2b67..1491b49a07a 100644 --- a/src/traces/carpet/calc.js +++ b/src/traces/carpet/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/carpet/calc_clippath.js b/src/traces/carpet/calc_clippath.js index 876ab074d0d..bfac1468a74 100644 --- a/src/traces/carpet/calc_clippath.js +++ b/src/traces/carpet/calc_clippath.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = function makeClipPath(xctrl, yctrl, aax, bax) { diff --git a/src/traces/carpet/calc_gridlines.js b/src/traces/carpet/calc_gridlines.js index 686b4cc3628..028409f044a 100644 --- a/src/traces/carpet/calc_gridlines.js +++ b/src/traces/carpet/calc_gridlines.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/carpet/calc_labels.js b/src/traces/carpet/calc_labels.js index 7609a4b46be..8b7d5a47045 100644 --- a/src/traces/carpet/calc_labels.js +++ b/src/traces/carpet/calc_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/carpet/catmull_rom.js b/src/traces/carpet/catmull_rom.js index 27866b02b92..3db6cd8df72 100644 --- a/src/traces/carpet/catmull_rom.js +++ b/src/traces/carpet/catmull_rom.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/traces/carpet/cheater_basis.js b/src/traces/carpet/cheater_basis.js index bccc2d5449a..56a9012096d 100644 --- a/src/traces/carpet/cheater_basis.js +++ b/src/traces/carpet/cheater_basis.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArrayOrTypedArray = require('../../lib').isArrayOrTypedArray; diff --git a/src/traces/carpet/compute_control_points.js b/src/traces/carpet/compute_control_points.js index e223f7021a9..9b5edc762cf 100644 --- a/src/traces/carpet/compute_control_points.js +++ b/src/traces/carpet/compute_control_points.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var makeControlPoints = require('./catmull_rom'); diff --git a/src/traces/carpet/constants.js b/src/traces/carpet/constants.js index e77e5a7ebb5..a91d793f1b5 100644 --- a/src/traces/carpet/constants.js +++ b/src/traces/carpet/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/traces/carpet/create_i_derivative_evaluator.js b/src/traces/carpet/create_i_derivative_evaluator.js index bc27548c3fc..c6d43e11084 100644 --- a/src/traces/carpet/create_i_derivative_evaluator.js +++ b/src/traces/carpet/create_i_derivative_evaluator.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/traces/carpet/create_j_derivative_evaluator.js b/src/traces/carpet/create_j_derivative_evaluator.js index 29fca6ddd1f..e9c414fb62c 100644 --- a/src/traces/carpet/create_j_derivative_evaluator.js +++ b/src/traces/carpet/create_j_derivative_evaluator.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function(arrays, asmoothing, bsmoothing) { diff --git a/src/traces/carpet/create_spline_evaluator.js b/src/traces/carpet/create_spline_evaluator.js index 51abd91e130..50d820bea35 100644 --- a/src/traces/carpet/create_spline_evaluator.js +++ b/src/traces/carpet/create_spline_evaluator.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/traces/carpet/defaults.js b/src/traces/carpet/defaults.js index c754fd7d975..bbadc66cde7 100644 --- a/src/traces/carpet/defaults.js +++ b/src/traces/carpet/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/carpet/index.js b/src/traces/carpet/index.js index 5e2d47b9330..d9eea96f480 100644 --- a/src/traces/carpet/index.js +++ b/src/traces/carpet/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/carpet/lookup_carpetid.js b/src/traces/carpet/lookup_carpetid.js index 0f8c4612225..5d0ff5b8783 100644 --- a/src/traces/carpet/lookup_carpetid.js +++ b/src/traces/carpet/lookup_carpetid.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/traces/carpet/makepath.js b/src/traces/carpet/makepath.js index 3d088d525f1..1151ab3215f 100644 --- a/src/traces/carpet/makepath.js +++ b/src/traces/carpet/makepath.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function makePath(xp, yp, isBicubic) { diff --git a/src/traces/carpet/map_1d_array.js b/src/traces/carpet/map_1d_array.js index 59c23f99c97..b42466709a5 100644 --- a/src/traces/carpet/map_1d_array.js +++ b/src/traces/carpet/map_1d_array.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArrayOrTypedArray = require('../../lib').isArrayOrTypedArray; diff --git a/src/traces/carpet/orient_text.js b/src/traces/carpet/orient_text.js index f49031bbc12..392cdc93092 100644 --- a/src/traces/carpet/orient_text.js +++ b/src/traces/carpet/orient_text.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = function orientText(trace, xaxis, yaxis, xy, dxy, refDxy) { diff --git a/src/traces/carpet/plot.js b/src/traces/carpet/plot.js index 4c08228f525..f12c30b8b3a 100644 --- a/src/traces/carpet/plot.js +++ b/src/traces/carpet/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/carpet/set_convert.js b/src/traces/carpet/set_convert.js index 4547a571d3e..15d5b8f87e5 100644 --- a/src/traces/carpet/set_convert.js +++ b/src/traces/carpet/set_convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var constants = require('./constants'); diff --git a/src/traces/carpet/smooth_fill_2d_array.js b/src/traces/carpet/smooth_fill_2d_array.js index 1885bd5e4fc..d8452b2c782 100644 --- a/src/traces/carpet/smooth_fill_2d_array.js +++ b/src/traces/carpet/smooth_fill_2d_array.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/carpet/smooth_fill_array.js b/src/traces/carpet/smooth_fill_array.js index 275dbc09da6..2c4e0639237 100644 --- a/src/traces/carpet/smooth_fill_array.js +++ b/src/traces/carpet/smooth_fill_array.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /* diff --git a/src/traces/carpet/xy_defaults.js b/src/traces/carpet/xy_defaults.js index 1fe5f39153f..f6f7f0f4a9e 100644 --- a/src/traces/carpet/xy_defaults.js +++ b/src/traces/carpet/xy_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isArray1D = require('../../lib').isArray1D; diff --git a/src/traces/choropleth/attributes.js b/src/traces/choropleth/attributes.js index f6e52d4d579..03e2d8b6bb5 100644 --- a/src/traces/choropleth/attributes.js +++ b/src/traces/choropleth/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/choropleth/calc.js b/src/traces/choropleth/calc.js index 49a672001eb..90c43275ea0 100644 --- a/src/traces/choropleth/calc.js +++ b/src/traces/choropleth/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/choropleth/defaults.js b/src/traces/choropleth/defaults.js index 1ae156741c3..b6b1a82e418 100644 --- a/src/traces/choropleth/defaults.js +++ b/src/traces/choropleth/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/choropleth/event_data.js b/src/traces/choropleth/event_data.js index 98873512b2e..8d272381ada 100644 --- a/src/traces/choropleth/event_data.js +++ b/src/traces/choropleth/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt, trace, cd, pointNumber) { diff --git a/src/traces/choropleth/hover.js b/src/traces/choropleth/hover.js index 3d41b3a0cbf..0f58dec902e 100644 --- a/src/traces/choropleth/hover.js +++ b/src/traces/choropleth/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/choropleth/index.js b/src/traces/choropleth/index.js index 6a44fd1e12a..82702e80add 100644 --- a/src/traces/choropleth/index.js +++ b/src/traces/choropleth/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/choropleth/plot.js b/src/traces/choropleth/plot.js index 8dd0ecc3313..da27bf17d78 100644 --- a/src/traces/choropleth/plot.js +++ b/src/traces/choropleth/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/choropleth/select.js b/src/traces/choropleth/select.js index c097e20b924..aad5c94e720 100644 --- a/src/traces/choropleth/select.js +++ b/src/traces/choropleth/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function selectPoints(searchInfo, selectionTester) { diff --git a/src/traces/choropleth/style.js b/src/traces/choropleth/style.js index 73fb5b5b68e..4ca8671a64d 100644 --- a/src/traces/choropleth/style.js +++ b/src/traces/choropleth/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/choroplethmapbox/attributes.js b/src/traces/choroplethmapbox/attributes.js index f88c90c80e9..6affbc98350 100644 --- a/src/traces/choroplethmapbox/attributes.js +++ b/src/traces/choroplethmapbox/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var choroplethAttrs = require('../choropleth/attributes'); diff --git a/src/traces/choroplethmapbox/convert.js b/src/traces/choroplethmapbox/convert.js index 27f0ea564ba..d770eb22f80 100644 --- a/src/traces/choroplethmapbox/convert.js +++ b/src/traces/choroplethmapbox/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/choroplethmapbox/defaults.js b/src/traces/choroplethmapbox/defaults.js index f4ac4d59e77..943670f8a88 100644 --- a/src/traces/choroplethmapbox/defaults.js +++ b/src/traces/choroplethmapbox/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/choroplethmapbox/index.js b/src/traces/choroplethmapbox/index.js index e92b9c24518..5c1f1ce8f43 100644 --- a/src/traces/choroplethmapbox/index.js +++ b/src/traces/choroplethmapbox/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/choroplethmapbox/plot.js b/src/traces/choroplethmapbox/plot.js index 184330b06ed..874cf7c6cae 100644 --- a/src/traces/choroplethmapbox/plot.js +++ b/src/traces/choroplethmapbox/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var convert = require('./convert').convert; diff --git a/src/traces/cone/attributes.js b/src/traces/cone/attributes.js index 1eb14f2f1ff..3181e854e3a 100644 --- a/src/traces/cone/attributes.js +++ b/src/traces/cone/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/cone/calc.js b/src/traces/cone/calc.js index 2e51157f9fb..7fca4b958a4 100644 --- a/src/traces/cone/calc.js +++ b/src/traces/cone/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorscaleCalc = require('../../components/colorscale/calc'); diff --git a/src/traces/cone/convert.js b/src/traces/cone/convert.js index 4d9eb071faa..a29eb91c435 100644 --- a/src/traces/cone/convert.js +++ b/src/traces/cone/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var conePlot = require('gl-cone3d'); diff --git a/src/traces/cone/defaults.js b/src/traces/cone/defaults.js index 05807ee7e2b..479ff0205a0 100644 --- a/src/traces/cone/defaults.js +++ b/src/traces/cone/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/cone/index.js b/src/traces/cone/index.js index 155b7b10a03..20abca44481 100644 --- a/src/traces/cone/index.js +++ b/src/traces/cone/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/contour/attributes.js b/src/traces/contour/attributes.js index 0dd9da8bbe8..350cb1766b9 100644 --- a/src/traces/contour/attributes.js +++ b/src/traces/contour/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var heatmapAttrs = require('../heatmap/attributes'); diff --git a/src/traces/contour/calc.js b/src/traces/contour/calc.js index 4872bbbb3f9..d47b6bcdb7c 100644 --- a/src/traces/contour/calc.js +++ b/src/traces/contour/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Colorscale = require('../../components/colorscale'); diff --git a/src/traces/contour/close_boundaries.js b/src/traces/contour/close_boundaries.js index 9f7b1c54691..8435d5f40b4 100644 --- a/src/traces/contour/close_boundaries.js +++ b/src/traces/contour/close_boundaries.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function(pathinfo, contours) { diff --git a/src/traces/contour/colorbar.js b/src/traces/contour/colorbar.js index 94bec8576cf..687a914fa1c 100644 --- a/src/traces/contour/colorbar.js +++ b/src/traces/contour/colorbar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Colorscale = require('../../components/colorscale'); diff --git a/src/traces/contour/constants.js b/src/traces/contour/constants.js index c7d3474c5e6..fa96ec16329 100644 --- a/src/traces/contour/constants.js +++ b/src/traces/contour/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { // some constants to help with marching squares algorithm diff --git a/src/traces/contour/constraint_defaults.js b/src/traces/contour/constraint_defaults.js index e6ba5959871..d6804e0876a 100644 --- a/src/traces/contour/constraint_defaults.js +++ b/src/traces/contour/constraint_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/contour/constraint_mapping.js b/src/traces/contour/constraint_mapping.js index 5a2971cf5e5..ba1560ccb7d 100644 --- a/src/traces/contour/constraint_mapping.js +++ b/src/traces/contour/constraint_mapping.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var filterOps = require('../../constants/filter_ops'); diff --git a/src/traces/contour/contours_defaults.js b/src/traces/contour/contours_defaults.js index 26714c02fb1..cad963f2533 100644 --- a/src/traces/contour/contours_defaults.js +++ b/src/traces/contour/contours_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function handleContourDefaults(traceIn, traceOut, coerce, coerce2) { diff --git a/src/traces/contour/convert_to_constraints.js b/src/traces/contour/convert_to_constraints.js index 954bdeb81b5..db155290738 100644 --- a/src/traces/contour/convert_to_constraints.js +++ b/src/traces/contour/convert_to_constraints.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/contour/defaults.js b/src/traces/contour/defaults.js index 21e975a0f55..e5a4b0424fb 100644 --- a/src/traces/contour/defaults.js +++ b/src/traces/contour/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/contour/empty_pathinfo.js b/src/traces/contour/empty_pathinfo.js index 7579c96fcc7..89d76d79587 100644 --- a/src/traces/contour/empty_pathinfo.js +++ b/src/traces/contour/empty_pathinfo.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/contour/end_plus.js b/src/traces/contour/end_plus.js index 59c643cd681..bcd9ed338cd 100644 --- a/src/traces/contour/end_plus.js +++ b/src/traces/contour/end_plus.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; /* diff --git a/src/traces/contour/find_all_paths.js b/src/traces/contour/find_all_paths.js index 0c1f0bd5989..468c8407b63 100644 --- a/src/traces/contour/find_all_paths.js +++ b/src/traces/contour/find_all_paths.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/contour/hover.js b/src/traces/contour/hover.js index 38a2cbc2a63..a89eaec5615 100644 --- a/src/traces/contour/hover.js +++ b/src/traces/contour/hover.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/contour/index.js b/src/traces/contour/index.js index 213f6ce9825..5ef43165750 100644 --- a/src/traces/contour/index.js +++ b/src/traces/contour/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/contour/label_defaults.js b/src/traces/contour/label_defaults.js index 42da3e97654..e2832c78055 100644 --- a/src/traces/contour/label_defaults.js +++ b/src/traces/contour/label_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/contour/make_color_map.js b/src/traces/contour/make_color_map.js index 1bd5c3beced..46cc9f10a28 100644 --- a/src/traces/contour/make_color_map.js +++ b/src/traces/contour/make_color_map.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/contour/make_crossings.js b/src/traces/contour/make_crossings.js index 317715a7174..1f77617bec7 100644 --- a/src/traces/contour/make_crossings.js +++ b/src/traces/contour/make_crossings.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var constants = require('./constants'); diff --git a/src/traces/contour/plot.js b/src/traces/contour/plot.js index e39da80a1d6..76b4520fea9 100644 --- a/src/traces/contour/plot.js +++ b/src/traces/contour/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/contour/set_contours.js b/src/traces/contour/set_contours.js index 016fcc794eb..77b8879f245 100644 --- a/src/traces/contour/set_contours.js +++ b/src/traces/contour/set_contours.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/contour/style.js b/src/traces/contour/style.js index 0f2bb1a3ddd..7206581606f 100644 --- a/src/traces/contour/style.js +++ b/src/traces/contour/style.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/contour/style_defaults.js b/src/traces/contour/style_defaults.js index 0f971154053..ed656765421 100644 --- a/src/traces/contour/style_defaults.js +++ b/src/traces/contour/style_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var colorscaleDefaults = require('../../components/colorscale/defaults'); diff --git a/src/traces/contourcarpet/attributes.js b/src/traces/contourcarpet/attributes.js index 4cd65644958..ef24eb7e590 100644 --- a/src/traces/contourcarpet/attributes.js +++ b/src/traces/contourcarpet/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var heatmapAttrs = require('../heatmap/attributes'); diff --git a/src/traces/contourcarpet/calc.js b/src/traces/contourcarpet/calc.js index 2378ab3dd50..c4b3ec1ec3c 100644 --- a/src/traces/contourcarpet/calc.js +++ b/src/traces/contourcarpet/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorscaleCalc = require('../../components/colorscale/calc'); diff --git a/src/traces/contourcarpet/defaults.js b/src/traces/contourcarpet/defaults.js index 508ca5e67ac..4a83c3558ae 100644 --- a/src/traces/contourcarpet/defaults.js +++ b/src/traces/contourcarpet/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/contourcarpet/index.js b/src/traces/contourcarpet/index.js index 65a2dc2f441..2210907cc71 100644 --- a/src/traces/contourcarpet/index.js +++ b/src/traces/contourcarpet/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/contourcarpet/plot.js b/src/traces/contourcarpet/plot.js index 3c141a20e00..2b2181c9a84 100644 --- a/src/traces/contourcarpet/plot.js +++ b/src/traces/contourcarpet/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/densitymapbox/attributes.js b/src/traces/densitymapbox/attributes.js index e3484a21195..7de62ad55ae 100644 --- a/src/traces/densitymapbox/attributes.js +++ b/src/traces/densitymapbox/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/densitymapbox/calc.js b/src/traces/densitymapbox/calc.js index 286e4b7e87a..c04f186364e 100644 --- a/src/traces/densitymapbox/calc.js +++ b/src/traces/densitymapbox/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/densitymapbox/convert.js b/src/traces/densitymapbox/convert.js index 5084b4e8e36..5dc11b89a30 100644 --- a/src/traces/densitymapbox/convert.js +++ b/src/traces/densitymapbox/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/densitymapbox/defaults.js b/src/traces/densitymapbox/defaults.js index dfb4ac4897b..67a467ff59d 100644 --- a/src/traces/densitymapbox/defaults.js +++ b/src/traces/densitymapbox/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/densitymapbox/event_data.js b/src/traces/densitymapbox/event_data.js index bf7fa66f676..18cd6f91e11 100644 --- a/src/traces/densitymapbox/event_data.js +++ b/src/traces/densitymapbox/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt) { diff --git a/src/traces/densitymapbox/hover.js b/src/traces/densitymapbox/hover.js index 783c2c57434..e972bcd0624 100644 --- a/src/traces/densitymapbox/hover.js +++ b/src/traces/densitymapbox/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/densitymapbox/index.js b/src/traces/densitymapbox/index.js index 6f1436d260a..bda9660b475 100644 --- a/src/traces/densitymapbox/index.js +++ b/src/traces/densitymapbox/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/densitymapbox/plot.js b/src/traces/densitymapbox/plot.js index ba42a2e606e..a4ff5e685ee 100644 --- a/src/traces/densitymapbox/plot.js +++ b/src/traces/densitymapbox/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var convert = require('./convert'); diff --git a/src/traces/funnel/arrays_to_calcdata.js b/src/traces/funnel/arrays_to_calcdata.js index a2116837d8e..821fa1c5a00 100644 --- a/src/traces/funnel/arrays_to_calcdata.js +++ b/src/traces/funnel/arrays_to_calcdata.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/funnel/attributes.js b/src/traces/funnel/attributes.js index 0f938b74790..dc921f32ec2 100644 --- a/src/traces/funnel/attributes.js +++ b/src/traces/funnel/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var barAttrs = require('../bar/attributes'); diff --git a/src/traces/funnel/calc.js b/src/traces/funnel/calc.js index f120fd0215c..164fba1ff3e 100644 --- a/src/traces/funnel/calc.js +++ b/src/traces/funnel/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/funnel/constants.js b/src/traces/funnel/constants.js index 6812394bf2e..733af38838c 100644 --- a/src/traces/funnel/constants.js +++ b/src/traces/funnel/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/funnel/cross_trace_calc.js b/src/traces/funnel/cross_trace_calc.js index c89f8a27b9b..c3fb8e6a588 100644 --- a/src/traces/funnel/cross_trace_calc.js +++ b/src/traces/funnel/cross_trace_calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var setGroupPositions = require('../bar/cross_trace_calc').setGroupPositions; diff --git a/src/traces/funnel/defaults.js b/src/traces/funnel/defaults.js index 57b6c1cea5e..85ad6ff466a 100644 --- a/src/traces/funnel/defaults.js +++ b/src/traces/funnel/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/funnel/event_data.js b/src/traces/funnel/event_data.js index cd8e28327bb..678219186e4 100644 --- a/src/traces/funnel/event_data.js +++ b/src/traces/funnel/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt /* , trace, cd, pointNumber */) { diff --git a/src/traces/funnel/hover.js b/src/traces/funnel/hover.js index 7d2794d597f..02687c1921e 100644 --- a/src/traces/funnel/hover.js +++ b/src/traces/funnel/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var opacity = require('../../components/color').opacity; diff --git a/src/traces/funnel/index.js b/src/traces/funnel/index.js index 2cdf7e32dc4..5bd93b80d95 100644 --- a/src/traces/funnel/index.js +++ b/src/traces/funnel/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/funnel/layout_attributes.js b/src/traces/funnel/layout_attributes.js index 20dfbecb8f0..438da599518 100644 --- a/src/traces/funnel/layout_attributes.js +++ b/src/traces/funnel/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/funnel/layout_defaults.js b/src/traces/funnel/layout_defaults.js index e28fe11de38..e0eb24cb499 100644 --- a/src/traces/funnel/layout_defaults.js +++ b/src/traces/funnel/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/funnel/plot.js b/src/traces/funnel/plot.js index 59483851484..43f23723e48 100644 --- a/src/traces/funnel/plot.js +++ b/src/traces/funnel/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/funnel/style.js b/src/traces/funnel/style.js index 5d3c5778564..2a393fd15a6 100644 --- a/src/traces/funnel/style.js +++ b/src/traces/funnel/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/funnelarea/attributes.js b/src/traces/funnelarea/attributes.js index 24d9a751e62..89c8ec43d3d 100644 --- a/src/traces/funnelarea/attributes.js +++ b/src/traces/funnelarea/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var pieAttrs = require('../pie/attributes'); diff --git a/src/traces/funnelarea/base_plot.js b/src/traces/funnelarea/base_plot.js index c860d6b34a5..494405bb538 100644 --- a/src/traces/funnelarea/base_plot.js +++ b/src/traces/funnelarea/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var plots = require('../../plots/plots'); diff --git a/src/traces/funnelarea/calc.js b/src/traces/funnelarea/calc.js index a376a73e631..882601ae351 100644 --- a/src/traces/funnelarea/calc.js +++ b/src/traces/funnelarea/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var pieCalc = require('../pie/calc'); diff --git a/src/traces/funnelarea/defaults.js b/src/traces/funnelarea/defaults.js index b553be53b1a..1798edaa99e 100644 --- a/src/traces/funnelarea/defaults.js +++ b/src/traces/funnelarea/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/funnelarea/index.js b/src/traces/funnelarea/index.js index cbfade188c5..bbb1609b5c2 100644 --- a/src/traces/funnelarea/index.js +++ b/src/traces/funnelarea/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/funnelarea/layout_attributes.js b/src/traces/funnelarea/layout_attributes.js index 520eb0ab82a..7fb86eee356 100644 --- a/src/traces/funnelarea/layout_attributes.js +++ b/src/traces/funnelarea/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hiddenlabels = require('../pie/layout_attributes').hiddenlabels; diff --git a/src/traces/funnelarea/layout_defaults.js b/src/traces/funnelarea/layout_defaults.js index c0e2a552d29..010a45c23be 100644 --- a/src/traces/funnelarea/layout_defaults.js +++ b/src/traces/funnelarea/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/funnelarea/plot.js b/src/traces/funnelarea/plot.js index 67796910e27..dbf790a0f4b 100644 --- a/src/traces/funnelarea/plot.js +++ b/src/traces/funnelarea/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/funnelarea/style.js b/src/traces/funnelarea/style.js index c9ad4a0c221..40f5b36cde9 100644 --- a/src/traces/funnelarea/style.js +++ b/src/traces/funnelarea/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/heatmap/attributes.js b/src/traces/heatmap/attributes.js index 820ee96df14..750c4f68986 100644 --- a/src/traces/heatmap/attributes.js +++ b/src/traces/heatmap/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterAttrs = require('../scatter/attributes'); diff --git a/src/traces/heatmap/calc.js b/src/traces/heatmap/calc.js index 7d62fb2d849..ce05bbf3f84 100644 --- a/src/traces/heatmap/calc.js +++ b/src/traces/heatmap/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/heatmap/clean_2d_array.js b/src/traces/heatmap/clean_2d_array.js index 36540bdfab3..cc679f152cf 100644 --- a/src/traces/heatmap/clean_2d_array.js +++ b/src/traces/heatmap/clean_2d_array.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/heatmap/colorbar.js b/src/traces/heatmap/colorbar.js index 9cdde292342..696e2a5e0e2 100644 --- a/src/traces/heatmap/colorbar.js +++ b/src/traces/heatmap/colorbar.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/heatmap/convert_column_xyz.js b/src/traces/heatmap/convert_column_xyz.js index e0748e696f9..643af02e52b 100644 --- a/src/traces/heatmap/convert_column_xyz.js +++ b/src/traces/heatmap/convert_column_xyz.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/heatmap/defaults.js b/src/traces/heatmap/defaults.js index e20f78280c8..6b18dc0c7dd 100644 --- a/src/traces/heatmap/defaults.js +++ b/src/traces/heatmap/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/heatmap/find_empties.js b/src/traces/heatmap/find_empties.js index 49f0c6ee629..88c75894fcd 100644 --- a/src/traces/heatmap/find_empties.js +++ b/src/traces/heatmap/find_empties.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var maxRowLength = require('../../lib').maxRowLength; diff --git a/src/traces/heatmap/hover.js b/src/traces/heatmap/hover.js index 19aabaa1dc3..9bafa7c4eaa 100644 --- a/src/traces/heatmap/hover.js +++ b/src/traces/heatmap/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Fx = require('../../components/fx'); diff --git a/src/traces/heatmap/index.js b/src/traces/heatmap/index.js index d39d0b61a08..f60bcb39f28 100644 --- a/src/traces/heatmap/index.js +++ b/src/traces/heatmap/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/heatmap/interp2d.js b/src/traces/heatmap/interp2d.js index b1fdf9d1245..5e48efc8d17 100644 --- a/src/traces/heatmap/interp2d.js +++ b/src/traces/heatmap/interp2d.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/heatmap/make_bound_array.js b/src/traces/heatmap/make_bound_array.js index aad299e565d..817ac4471a1 100644 --- a/src/traces/heatmap/make_bound_array.js +++ b/src/traces/heatmap/make_bound_array.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/heatmap/plot.js b/src/traces/heatmap/plot.js index aa7d35889df..e511866bb07 100644 --- a/src/traces/heatmap/plot.js +++ b/src/traces/heatmap/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/heatmap/style.js b/src/traces/heatmap/style.js index a09bfda95e1..0e6e1bd4a31 100644 --- a/src/traces/heatmap/style.js +++ b/src/traces/heatmap/style.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/heatmap/style_defaults.js b/src/traces/heatmap/style_defaults.js index 73cb33b1305..824b82755ed 100644 --- a/src/traces/heatmap/style_defaults.js +++ b/src/traces/heatmap/style_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = function handleStyleDefaults(traceIn, traceOut, coerce) { diff --git a/src/traces/heatmap/xyz_defaults.js b/src/traces/heatmap/xyz_defaults.js index 1ee9e49c05c..5afcc20e708 100644 --- a/src/traces/heatmap/xyz_defaults.js +++ b/src/traces/heatmap/xyz_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/heatmapgl/attributes.js b/src/traces/heatmapgl/attributes.js index 812bb18ff27..a0ff2331dc6 100644 --- a/src/traces/heatmapgl/attributes.js +++ b/src/traces/heatmapgl/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var heatmapAttrs = require('../heatmap/attributes'); diff --git a/src/traces/heatmapgl/convert.js b/src/traces/heatmapgl/convert.js index 0bc3ca9f554..2dee2f97c3f 100644 --- a/src/traces/heatmapgl/convert.js +++ b/src/traces/heatmapgl/convert.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var createHeatmap2D = require('gl-heatmap2d'); diff --git a/src/traces/heatmapgl/defaults.js b/src/traces/heatmapgl/defaults.js index e95c90491a1..7f5f259fd0b 100644 --- a/src/traces/heatmapgl/defaults.js +++ b/src/traces/heatmapgl/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/heatmapgl/index.js b/src/traces/heatmapgl/index.js index efabb704dbe..c6415766fdf 100644 --- a/src/traces/heatmapgl/index.js +++ b/src/traces/heatmapgl/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/histogram/attributes.js b/src/traces/histogram/attributes.js index ddbdd67b38f..753aad4a69a 100644 --- a/src/traces/histogram/attributes.js +++ b/src/traces/histogram/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var barAttrs = require('../bar/attributes'); diff --git a/src/traces/histogram/average.js b/src/traces/histogram/average.js index 467fa36355e..9a9e788528b 100644 --- a/src/traces/histogram/average.js +++ b/src/traces/histogram/average.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/traces/histogram/bin_attributes.js b/src/traces/histogram/bin_attributes.js index e6cdd1342b3..ab6e49b5835 100644 --- a/src/traces/histogram/bin_attributes.js +++ b/src/traces/histogram/bin_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function makeBinAttrs(axLetter, match) { diff --git a/src/traces/histogram/bin_functions.js b/src/traces/histogram/bin_functions.js index 84df908a5e7..c568ecf7019 100644 --- a/src/traces/histogram/bin_functions.js +++ b/src/traces/histogram/bin_functions.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/histogram/bin_label_vals.js b/src/traces/histogram/bin_label_vals.js index cb7906123c6..6f0104285ee 100644 --- a/src/traces/histogram/bin_label_vals.js +++ b/src/traces/histogram/bin_label_vals.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var numConstants = require('../../constants/numerical'); diff --git a/src/traces/histogram/calc.js b/src/traces/histogram/calc.js index 7f98eea019a..18e34c6c6ee 100644 --- a/src/traces/histogram/calc.js +++ b/src/traces/histogram/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/histogram/constants.js b/src/traces/histogram/constants.js index 087ee5884b7..63b016f6966 100644 --- a/src/traces/histogram/constants.js +++ b/src/traces/histogram/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/traces/histogram/cross_trace_defaults.js b/src/traces/histogram/cross_trace_defaults.js index 3a70c0af6e9..fc40897d43d 100644 --- a/src/traces/histogram/cross_trace_defaults.js +++ b/src/traces/histogram/cross_trace_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/histogram/defaults.js b/src/traces/histogram/defaults.js index c999d0681bc..73ad3a78f3a 100644 --- a/src/traces/histogram/defaults.js +++ b/src/traces/histogram/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/histogram/event_data.js b/src/traces/histogram/event_data.js index e36a46baac9..db61fccc7db 100644 --- a/src/traces/histogram/event_data.js +++ b/src/traces/histogram/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt, trace, cd, pointNumber) { diff --git a/src/traces/histogram/hover.js b/src/traces/histogram/hover.js index 093cc5a2beb..3e77b33da22 100644 --- a/src/traces/histogram/hover.js +++ b/src/traces/histogram/hover.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var barHover = require('../bar/hover').hoverPoints; diff --git a/src/traces/histogram/index.js b/src/traces/histogram/index.js index f1ca499d4b6..442c839e06d 100644 --- a/src/traces/histogram/index.js +++ b/src/traces/histogram/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/traces/histogram/norm_functions.js b/src/traces/histogram/norm_functions.js index eba14f9ecac..4b9480b61bb 100644 --- a/src/traces/histogram/norm_functions.js +++ b/src/traces/histogram/norm_functions.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/traces/histogram2d/attributes.js b/src/traces/histogram2d/attributes.js index f0fc764e755..ca5d6a3c02a 100644 --- a/src/traces/histogram2d/attributes.js +++ b/src/traces/histogram2d/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var histogramAttrs = require('../histogram/attributes'); diff --git a/src/traces/histogram2d/calc.js b/src/traces/histogram2d/calc.js index 7e209e9eb8d..88206d274b1 100644 --- a/src/traces/histogram2d/calc.js +++ b/src/traces/histogram2d/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/histogram2d/defaults.js b/src/traces/histogram2d/defaults.js index 5d06295e4ae..8162274a2ef 100644 --- a/src/traces/histogram2d/defaults.js +++ b/src/traces/histogram2d/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/histogram2d/hover.js b/src/traces/histogram2d/hover.js index e3e080c9395..879b44cdc13 100644 --- a/src/traces/histogram2d/hover.js +++ b/src/traces/histogram2d/hover.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var heatmapHover = require('../heatmap/hover'); diff --git a/src/traces/histogram2d/index.js b/src/traces/histogram2d/index.js index 8c5d63b9dbf..986cc288788 100644 --- a/src/traces/histogram2d/index.js +++ b/src/traces/histogram2d/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/histogram2d/sample_defaults.js b/src/traces/histogram2d/sample_defaults.js index d77915bbfcb..a889eb18689 100644 --- a/src/traces/histogram2d/sample_defaults.js +++ b/src/traces/histogram2d/sample_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/histogram2dcontour/attributes.js b/src/traces/histogram2dcontour/attributes.js index d5a48212720..57d5cb4a2e7 100644 --- a/src/traces/histogram2dcontour/attributes.js +++ b/src/traces/histogram2dcontour/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var histogram2dAttrs = require('../histogram2d/attributes'); diff --git a/src/traces/histogram2dcontour/defaults.js b/src/traces/histogram2dcontour/defaults.js index 33b84001ae3..e7b3ea468d3 100644 --- a/src/traces/histogram2dcontour/defaults.js +++ b/src/traces/histogram2dcontour/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/histogram2dcontour/index.js b/src/traces/histogram2dcontour/index.js index 7d3dbfd4d3d..442f05756d2 100644 --- a/src/traces/histogram2dcontour/index.js +++ b/src/traces/histogram2dcontour/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/image/attributes.js b/src/traces/image/attributes.js index 3961fa8907d..f177325e471 100644 --- a/src/traces/image/attributes.js +++ b/src/traces/image/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var baseAttrs = require('../../plots/attributes'); diff --git a/src/traces/image/calc.js b/src/traces/image/calc.js index 707bd6b1bcd..28114d6f9f9 100644 --- a/src/traces/image/calc.js +++ b/src/traces/image/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/image/constants.js b/src/traces/image/constants.js index 240ef31cc7b..3eefa7649e3 100644 --- a/src/traces/image/constants.js +++ b/src/traces/image/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/image/defaults.js b/src/traces/image/defaults.js index 86bcf4e91b5..5d19c45ea0e 100644 --- a/src/traces/image/defaults.js +++ b/src/traces/image/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/image/event_data.js b/src/traces/image/event_data.js index fcaf62d4a87..0d8d1bc3ba0 100644 --- a/src/traces/image/event_data.js +++ b/src/traces/image/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt) { diff --git a/src/traces/image/helpers.js b/src/traces/image/helpers.js index b96887cca3b..fe0e096246d 100644 --- a/src/traces/image/helpers.js +++ b/src/traces/image/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var probeSync = require('probe-image-size/sync'); diff --git a/src/traces/image/hover.js b/src/traces/image/hover.js index 8bf69eebc13..80977b7e76b 100644 --- a/src/traces/image/hover.js +++ b/src/traces/image/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Fx = require('../../components/fx'); diff --git a/src/traces/image/index.js b/src/traces/image/index.js index da8ee72eb4b..89c31c77d87 100644 --- a/src/traces/image/index.js +++ b/src/traces/image/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/image/plot.js b/src/traces/image/plot.js index 45cca6ef363..e182df8db81 100644 --- a/src/traces/image/plot.js +++ b/src/traces/image/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/image/style.js b/src/traces/image/style.js index 3305b513d77..e6363239f04 100644 --- a/src/traces/image/style.js +++ b/src/traces/image/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/indicator/attributes.js b/src/traces/indicator/attributes.js index 4496eb70956..3a7276df14b 100644 --- a/src/traces/indicator/attributes.js +++ b/src/traces/indicator/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var extendFlat = require('../../lib/extend').extendFlat; diff --git a/src/traces/indicator/base_plot.js b/src/traces/indicator/base_plot.js index 4c5b3dd7c95..50635bac1c1 100644 --- a/src/traces/indicator/base_plot.js +++ b/src/traces/indicator/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var plots = require('../../plots/plots'); diff --git a/src/traces/indicator/calc.js b/src/traces/indicator/calc.js index 8e2263fe665..644cd47ef32 100644 --- a/src/traces/indicator/calc.js +++ b/src/traces/indicator/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // var Lib = require('../../lib'); diff --git a/src/traces/indicator/constants.js b/src/traces/indicator/constants.js index 85ceeb49058..bd49dbe5ae7 100644 --- a/src/traces/indicator/constants.js +++ b/src/traces/indicator/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/indicator/defaults.js b/src/traces/indicator/defaults.js index 423fc46e9b6..2b664ff3914 100644 --- a/src/traces/indicator/defaults.js +++ b/src/traces/indicator/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/indicator/index.js b/src/traces/indicator/index.js index 07d0a348588..5e7525f1865 100644 --- a/src/traces/indicator/index.js +++ b/src/traces/indicator/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/indicator/plot.js b/src/traces/indicator/plot.js index 6f5abc99afb..c39805d3258 100644 --- a/src/traces/indicator/plot.js +++ b/src/traces/indicator/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/isosurface/attributes.js b/src/traces/isosurface/attributes.js index 55a13426c88..b98d500890a 100644 --- a/src/traces/isosurface/attributes.js +++ b/src/traces/isosurface/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/isosurface/calc.js b/src/traces/isosurface/calc.js index 867c1e2d0d8..8e425d2ab1a 100644 --- a/src/traces/isosurface/calc.js +++ b/src/traces/isosurface/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorscaleCalc = require('../../components/colorscale/calc'); diff --git a/src/traces/isosurface/convert.js b/src/traces/isosurface/convert.js index 22d2a9baa5f..34bc0da7052 100644 --- a/src/traces/isosurface/convert.js +++ b/src/traces/isosurface/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createMesh = require('gl-mesh3d'); diff --git a/src/traces/isosurface/defaults.js b/src/traces/isosurface/defaults.js index 46c46d4e649..d30037c4e3a 100644 --- a/src/traces/isosurface/defaults.js +++ b/src/traces/isosurface/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/isosurface/index.js b/src/traces/isosurface/index.js index 8d3eeda232a..2ee04909cbf 100644 --- a/src/traces/isosurface/index.js +++ b/src/traces/isosurface/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/mesh3d/attributes.js b/src/traces/mesh3d/attributes.js index 284becb001b..d9b34d38ca9 100644 --- a/src/traces/mesh3d/attributes.js +++ b/src/traces/mesh3d/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/mesh3d/calc.js b/src/traces/mesh3d/calc.js index c19bea625d1..d13fa134095 100644 --- a/src/traces/mesh3d/calc.js +++ b/src/traces/mesh3d/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorscaleCalc = require('../../components/colorscale/calc'); diff --git a/src/traces/mesh3d/convert.js b/src/traces/mesh3d/convert.js index 9b42f50d2c3..7968a90ba3c 100644 --- a/src/traces/mesh3d/convert.js +++ b/src/traces/mesh3d/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createMesh = require('gl-mesh3d'); diff --git a/src/traces/mesh3d/defaults.js b/src/traces/mesh3d/defaults.js index 356383a7a08..66f3dc4b0d9 100644 --- a/src/traces/mesh3d/defaults.js +++ b/src/traces/mesh3d/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/mesh3d/index.js b/src/traces/mesh3d/index.js index 9cc0d83c87f..4c565eda145 100644 --- a/src/traces/mesh3d/index.js +++ b/src/traces/mesh3d/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/ohlc/attributes.js b/src/traces/ohlc/attributes.js index b2262b76062..6fc019825d0 100644 --- a/src/traces/ohlc/attributes.js +++ b/src/traces/ohlc/attributes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var extendFlat = require('../../lib').extendFlat; diff --git a/src/traces/ohlc/calc.js b/src/traces/ohlc/calc.js index 7265416863d..e0d0a85f83f 100644 --- a/src/traces/ohlc/calc.js +++ b/src/traces/ohlc/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/ohlc/defaults.js b/src/traces/ohlc/defaults.js index bf2514b4fea..ee9178b17b8 100644 --- a/src/traces/ohlc/defaults.js +++ b/src/traces/ohlc/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/ohlc/hover.js b/src/traces/ohlc/hover.js index ad4edf28f95..df8c6492717 100644 --- a/src/traces/ohlc/hover.js +++ b/src/traces/ohlc/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/ohlc/index.js b/src/traces/ohlc/index.js index 38b12089bf3..dea32e3b0b8 100644 --- a/src/traces/ohlc/index.js +++ b/src/traces/ohlc/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/ohlc/ohlc_defaults.js b/src/traces/ohlc/ohlc_defaults.js index 61857d54562..4051d74ec7d 100644 --- a/src/traces/ohlc/ohlc_defaults.js +++ b/src/traces/ohlc/ohlc_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/ohlc/plot.js b/src/traces/ohlc/plot.js index bbb82ca99f6..d2c36fdda20 100644 --- a/src/traces/ohlc/plot.js +++ b/src/traces/ohlc/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/ohlc/select.js b/src/traces/ohlc/select.js index 2f25bf19f1d..af707a476a5 100644 --- a/src/traces/ohlc/select.js +++ b/src/traces/ohlc/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function selectPoints(searchInfo, selectionTester) { diff --git a/src/traces/ohlc/style.js b/src/traces/ohlc/style.js index 73129566a23..4b7273415a2 100644 --- a/src/traces/ohlc/style.js +++ b/src/traces/ohlc/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/parcats/attributes.js b/src/traces/parcats/attributes.js index da7c4e4b5ed..0434074ad7a 100644 --- a/src/traces/parcats/attributes.js +++ b/src/traces/parcats/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var extendFlat = require('../../lib/extend').extendFlat; diff --git a/src/traces/parcats/base_plot.js b/src/traces/parcats/base_plot.js index ed4ae5e0ebc..4e01b0aa761 100644 --- a/src/traces/parcats/base_plot.js +++ b/src/traces/parcats/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var getModuleCalcData = require('../../plots/get_data').getModuleCalcData; diff --git a/src/traces/parcats/calc.js b/src/traces/parcats/calc.js index a04d5e7e7ce..24b33313b7c 100644 --- a/src/traces/parcats/calc.js +++ b/src/traces/parcats/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // Requirements diff --git a/src/traces/parcats/defaults.js b/src/traces/parcats/defaults.js index 5b648b815c2..6a0c436a26f 100644 --- a/src/traces/parcats/defaults.js +++ b/src/traces/parcats/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/parcats/index.js b/src/traces/parcats/index.js index ddbf068cb01..221685d9f7a 100644 --- a/src/traces/parcats/index.js +++ b/src/traces/parcats/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/parcats/parcats.js b/src/traces/parcats/parcats.js index 978718ab903..9152895a453 100644 --- a/src/traces/parcats/parcats.js +++ b/src/traces/parcats/parcats.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/parcats/plot.js b/src/traces/parcats/plot.js index 4a654476d4c..661f8e00117 100644 --- a/src/traces/parcats/plot.js +++ b/src/traces/parcats/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/traces/parcoords/attributes.js b/src/traces/parcoords/attributes.js index 3aef1c36e22..38ec6167c94 100644 --- a/src/traces/parcoords/attributes.js +++ b/src/traces/parcoords/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/parcoords/axisbrush.js b/src/traces/parcoords/axisbrush.js index d7fc92e1478..60dbc81916e 100644 --- a/src/traces/parcoords/axisbrush.js +++ b/src/traces/parcoords/axisbrush.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var c = require('./constants'); diff --git a/src/traces/parcoords/base_plot.js b/src/traces/parcoords/base_plot.js index 1a8fffb40c5..8a63c8822f2 100644 --- a/src/traces/parcoords/base_plot.js +++ b/src/traces/parcoords/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/parcoords/calc.js b/src/traces/parcoords/calc.js index c7971592840..35a5cf2c964 100644 --- a/src/traces/parcoords/calc.js +++ b/src/traces/parcoords/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArrayOrTypedArray = require('../../lib').isArrayOrTypedArray; diff --git a/src/traces/parcoords/constants.js b/src/traces/parcoords/constants.js index 93f03fa4559..25c60ae4c24 100644 --- a/src/traces/parcoords/constants.js +++ b/src/traces/parcoords/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; diff --git a/src/traces/parcoords/defaults.js b/src/traces/parcoords/defaults.js index 33ab515aab1..5c7b6569c11 100644 --- a/src/traces/parcoords/defaults.js +++ b/src/traces/parcoords/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/parcoords/helpers.js b/src/traces/parcoords/helpers.js index 72d93f5e847..b22e0822725 100644 --- a/src/traces/parcoords/helpers.js +++ b/src/traces/parcoords/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isTypedArray = require('../../lib').isTypedArray; diff --git a/src/traces/parcoords/index.js b/src/traces/parcoords/index.js index 7bd8d47c621..f5f6699ec58 100644 --- a/src/traces/parcoords/index.js +++ b/src/traces/parcoords/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/parcoords/lines.js b/src/traces/parcoords/lines.js index 6a34216198b..a17b14001b1 100644 --- a/src/traces/parcoords/lines.js +++ b/src/traces/parcoords/lines.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var glslify = require('glslify'); diff --git a/src/traces/parcoords/merge_length.js b/src/traces/parcoords/merge_length.js index b55bbc66738..de679b20c3c 100644 --- a/src/traces/parcoords/merge_length.js +++ b/src/traces/parcoords/merge_length.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; /** diff --git a/src/traces/parcoords/parcoords.js b/src/traces/parcoords/parcoords.js index 9a79ead1e4e..167c1c6d818 100644 --- a/src/traces/parcoords/parcoords.js +++ b/src/traces/parcoords/parcoords.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/parcoords/plot.js b/src/traces/parcoords/plot.js index b61a985a1fb..7ae5be63323 100644 --- a/src/traces/parcoords/plot.js +++ b/src/traces/parcoords/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var parcoords = require('./parcoords'); diff --git a/src/traces/pie/attributes.js b/src/traces/pie/attributes.js index c163bd64b1f..e30768e4e05 100644 --- a/src/traces/pie/attributes.js +++ b/src/traces/pie/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var baseAttrs = require('../../plots/attributes'); diff --git a/src/traces/pie/base_plot.js b/src/traces/pie/base_plot.js index 6ac751f1b99..a057e4011fd 100644 --- a/src/traces/pie/base_plot.js +++ b/src/traces/pie/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var plots = require('../../plots/plots'); diff --git a/src/traces/pie/calc.js b/src/traces/pie/calc.js index df7cd0804ad..6f9208b0144 100644 --- a/src/traces/pie/calc.js +++ b/src/traces/pie/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/pie/defaults.js b/src/traces/pie/defaults.js index dca558aa554..806897d12dc 100644 --- a/src/traces/pie/defaults.js +++ b/src/traces/pie/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/pie/event_data.js b/src/traces/pie/event_data.js index 0a58eb71d6d..3393f0353dd 100644 --- a/src/traces/pie/event_data.js +++ b/src/traces/pie/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var appendArrayMultiPointValues = require('../../components/fx/helpers').appendArrayMultiPointValues; diff --git a/src/traces/pie/helpers.js b/src/traces/pie/helpers.js index 0c9be9834d8..25d35d09e42 100644 --- a/src/traces/pie/helpers.js +++ b/src/traces/pie/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/pie/index.js b/src/traces/pie/index.js index 6e52e8ec185..0e0baf59517 100644 --- a/src/traces/pie/index.js +++ b/src/traces/pie/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/pie/layout_attributes.js b/src/traces/pie/layout_attributes.js index 561d05d8ba3..84a3f28b53f 100644 --- a/src/traces/pie/layout_attributes.js +++ b/src/traces/pie/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/pie/layout_defaults.js b/src/traces/pie/layout_defaults.js index f97a4bb7f6f..6331a7c6989 100644 --- a/src/traces/pie/layout_defaults.js +++ b/src/traces/pie/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/pie/plot.js b/src/traces/pie/plot.js index b3e9329efa8..cca8694817d 100644 --- a/src/traces/pie/plot.js +++ b/src/traces/pie/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/pie/style.js b/src/traces/pie/style.js index 0848ecccf6b..9a1929a5311 100644 --- a/src/traces/pie/style.js +++ b/src/traces/pie/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/pie/style_one.js b/src/traces/pie/style_one.js index e8598bb4e32..943a69e6b37 100644 --- a/src/traces/pie/style_one.js +++ b/src/traces/pie/style_one.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/pointcloud/attributes.js b/src/traces/pointcloud/attributes.js index 15ac4d51d98..8dffbfee0a0 100644 --- a/src/traces/pointcloud/attributes.js +++ b/src/traces/pointcloud/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterglAttrs = require('../scatter/attributes'); diff --git a/src/traces/pointcloud/convert.js b/src/traces/pointcloud/convert.js index 9735071ba54..da0a27d7d0a 100644 --- a/src/traces/pointcloud/convert.js +++ b/src/traces/pointcloud/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createPointCloudRenderer = require('gl-pointcloud2d'); diff --git a/src/traces/pointcloud/defaults.js b/src/traces/pointcloud/defaults.js index 0aedf577504..0fcd7a84cf9 100644 --- a/src/traces/pointcloud/defaults.js +++ b/src/traces/pointcloud/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/pointcloud/index.js b/src/traces/pointcloud/index.js index 868e1cce512..1f7b8fdc3e2 100644 --- a/src/traces/pointcloud/index.js +++ b/src/traces/pointcloud/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sankey/attributes.js b/src/traces/sankey/attributes.js index b9cc68e798f..e029b635412 100644 --- a/src/traces/sankey/attributes.js +++ b/src/traces/sankey/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var fontAttrs = require('../../plots/font_attributes'); diff --git a/src/traces/sankey/base_plot.js b/src/traces/sankey/base_plot.js index b5015b58841..e9558289d8b 100644 --- a/src/traces/sankey/base_plot.js +++ b/src/traces/sankey/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var overrideAll = require('../../plot_api/edit_types').overrideAll; diff --git a/src/traces/sankey/calc.js b/src/traces/sankey/calc.js index 514b062bb8f..4cbb93c1fdb 100644 --- a/src/traces/sankey/calc.js +++ b/src/traces/sankey/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var tarjan = require('strongly-connected-components'); diff --git a/src/traces/sankey/constants.js b/src/traces/sankey/constants.js index 9c03423c225..3145c55261d 100644 --- a/src/traces/sankey/constants.js +++ b/src/traces/sankey/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sankey/defaults.js b/src/traces/sankey/defaults.js index 930620a55af..9694df6eb7b 100644 --- a/src/traces/sankey/defaults.js +++ b/src/traces/sankey/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/sankey/index.js b/src/traces/sankey/index.js index 48fe07d4cf5..73f546fb84c 100644 --- a/src/traces/sankey/index.js +++ b/src/traces/sankey/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sankey/plot.js b/src/traces/sankey/plot.js index 9d2c76673ac..735786adba1 100644 --- a/src/traces/sankey/plot.js +++ b/src/traces/sankey/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/sankey/render.js b/src/traces/sankey/render.js index e791f660363..6e3b851ffac 100644 --- a/src/traces/sankey/render.js +++ b/src/traces/sankey/render.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var c = require('./constants'); diff --git a/src/traces/sankey/select.js b/src/traces/sankey/select.js index 39ab35cbf23..c2af9dc6227 100644 --- a/src/traces/sankey/select.js +++ b/src/traces/sankey/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function selectPoints(searchInfo, selectionTester) { diff --git a/src/traces/scatter/arrays_to_calcdata.js b/src/traces/scatter/arrays_to_calcdata.js index 13b65950086..44f63d81609 100644 --- a/src/traces/scatter/arrays_to_calcdata.js +++ b/src/traces/scatter/arrays_to_calcdata.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter/attributes.js b/src/traces/scatter/attributes.js index 6e8c63c198a..0bccd03b4f2 100644 --- a/src/traces/scatter/attributes.js +++ b/src/traces/scatter/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var texttemplateAttrs = require('../../plots/template_attributes').texttemplateAttrs; diff --git a/src/traces/scatter/calc.js b/src/traces/scatter/calc.js index 7bc1f67602f..7efbf5b96d9 100644 --- a/src/traces/scatter/calc.js +++ b/src/traces/scatter/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scatter/calc_selection.js b/src/traces/scatter/calc_selection.js index ece8c1a864a..09f3fa973a0 100644 --- a/src/traces/scatter/calc_selection.js +++ b/src/traces/scatter/calc_selection.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter/colorscale_calc.js b/src/traces/scatter/colorscale_calc.js index 466a0b42299..c0da95c22ce 100644 --- a/src/traces/scatter/colorscale_calc.js +++ b/src/traces/scatter/colorscale_calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hasColorscale = require('../../components/colorscale/helpers').hasColorscale; diff --git a/src/traces/scatter/constants.js b/src/traces/scatter/constants.js index 1160a32b2da..4499fa5c15c 100644 --- a/src/traces/scatter/constants.js +++ b/src/traces/scatter/constants.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/traces/scatter/cross_trace_calc.js b/src/traces/scatter/cross_trace_calc.js index 5c306f64fb4..69006d8d45a 100644 --- a/src/traces/scatter/cross_trace_calc.js +++ b/src/traces/scatter/cross_trace_calc.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var calc = require('./calc'); diff --git a/src/traces/scatter/cross_trace_defaults.js b/src/traces/scatter/cross_trace_defaults.js index 379aa3bf2d5..61b4f734b57 100644 --- a/src/traces/scatter/cross_trace_defaults.js +++ b/src/traces/scatter/cross_trace_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/traces/scatter/defaults.js b/src/traces/scatter/defaults.js index 1f74cf42884..2b18b1c9cbd 100644 --- a/src/traces/scatter/defaults.js +++ b/src/traces/scatter/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter/fillcolor_defaults.js b/src/traces/scatter/fillcolor_defaults.js index af385d5db73..bcb08a51825 100644 --- a/src/traces/scatter/fillcolor_defaults.js +++ b/src/traces/scatter/fillcolor_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/scatter/format_labels.js b/src/traces/scatter/format_labels.js index b9356ff8aed..a3604c7dd53 100644 --- a/src/traces/scatter/format_labels.js +++ b/src/traces/scatter/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/scatter/get_trace_color.js b/src/traces/scatter/get_trace_color.js index 112feb183cd..d20e37affbc 100644 --- a/src/traces/scatter/get_trace_color.js +++ b/src/traces/scatter/get_trace_color.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/scatter/hover.js b/src/traces/scatter/hover.js index ec9d2d34c46..b9dc41387c4 100644 --- a/src/traces/scatter/hover.js +++ b/src/traces/scatter/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter/index.js b/src/traces/scatter/index.js index 7b8e0a7d771..ca331864668 100644 --- a/src/traces/scatter/index.js +++ b/src/traces/scatter/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var subtypes = require('./subtypes'); diff --git a/src/traces/scatter/line_defaults.js b/src/traces/scatter/line_defaults.js index 34dad968763..1812112a077 100644 --- a/src/traces/scatter/line_defaults.js +++ b/src/traces/scatter/line_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isArrayOrTypedArray = require('../../lib').isArrayOrTypedArray; diff --git a/src/traces/scatter/line_points.js b/src/traces/scatter/line_points.js index bd7e9aebc02..58c9436dc59 100644 --- a/src/traces/scatter/line_points.js +++ b/src/traces/scatter/line_points.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var numConstants = require('../../constants/numerical'); diff --git a/src/traces/scatter/line_shape_defaults.js b/src/traces/scatter/line_shape_defaults.js index 72e2fb6db19..b1ac5f3dd30 100644 --- a/src/traces/scatter/line_shape_defaults.js +++ b/src/traces/scatter/line_shape_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/traces/scatter/link_traces.js b/src/traces/scatter/link_traces.js index 467f40f802f..31c5cc69eb1 100644 --- a/src/traces/scatter/link_traces.js +++ b/src/traces/scatter/link_traces.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var LINKEDFILLS = {tonextx: 1, tonexty: 1, tonext: 1}; diff --git a/src/traces/scatter/make_bubble_size_func.js b/src/traces/scatter/make_bubble_size_func.js index 8eb2edc96ee..644a26dcab8 100644 --- a/src/traces/scatter/make_bubble_size_func.js +++ b/src/traces/scatter/make_bubble_size_func.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scatter/marker_colorbar.js b/src/traces/scatter/marker_colorbar.js index 1279eb4a35f..bb39e14bfd1 100644 --- a/src/traces/scatter/marker_colorbar.js +++ b/src/traces/scatter/marker_colorbar.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; module.exports = { diff --git a/src/traces/scatter/marker_defaults.js b/src/traces/scatter/marker_defaults.js index 8b40714f928..a881cc7cf3c 100644 --- a/src/traces/scatter/marker_defaults.js +++ b/src/traces/scatter/marker_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/scatter/period_defaults.js b/src/traces/scatter/period_defaults.js index 361ee90954b..f48bc8aa6e9 100644 --- a/src/traces/scatter/period_defaults.js +++ b/src/traces/scatter/period_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var dateTick0 = require('../../lib').dateTick0; diff --git a/src/traces/scatter/plot.js b/src/traces/scatter/plot.js index a4d4d42eadf..88671f53481 100644 --- a/src/traces/scatter/plot.js +++ b/src/traces/scatter/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/scatter/select.js b/src/traces/scatter/select.js index 9288702a561..01f757a779e 100644 --- a/src/traces/scatter/select.js +++ b/src/traces/scatter/select.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var subtypes = require('./subtypes'); diff --git a/src/traces/scatter/stack_defaults.js b/src/traces/scatter/stack_defaults.js index df2222c019f..91c02c9c7d5 100644 --- a/src/traces/scatter/stack_defaults.js +++ b/src/traces/scatter/stack_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var perStackAttrs = ['orientation', 'groupnorm', 'stackgaps']; diff --git a/src/traces/scatter/style.js b/src/traces/scatter/style.js index c0c31e890c0..64bfac1416e 100644 --- a/src/traces/scatter/style.js +++ b/src/traces/scatter/style.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/scatter/subtypes.js b/src/traces/scatter/subtypes.js index 767b98dd693..780017eb5fa 100644 --- a/src/traces/scatter/subtypes.js +++ b/src/traces/scatter/subtypes.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter/text_defaults.js b/src/traces/scatter/text_defaults.js index a92fd9f974d..98e2718c465 100644 --- a/src/traces/scatter/text_defaults.js +++ b/src/traces/scatter/text_defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter/xy_defaults.js b/src/traces/scatter/xy_defaults.js index 5960c9a74cf..2c9eb19fa51 100644 --- a/src/traces/scatter/xy_defaults.js +++ b/src/traces/scatter/xy_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatter3d/attributes.js b/src/traces/scatter3d/attributes.js index a22adcb34a5..62567e3ff54 100644 --- a/src/traces/scatter3d/attributes.js +++ b/src/traces/scatter3d/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterAttrs = require('../scatter/attributes'); diff --git a/src/traces/scatter3d/calc.js b/src/traces/scatter3d/calc.js index 3b1c259033e..d5b7799342f 100644 --- a/src/traces/scatter3d/calc.js +++ b/src/traces/scatter3d/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var arraysToCalcdata = require('../scatter/arrays_to_calcdata'); diff --git a/src/traces/scatter3d/calc_errors.js b/src/traces/scatter3d/calc_errors.js index 28b092efac7..9406249a871 100644 --- a/src/traces/scatter3d/calc_errors.js +++ b/src/traces/scatter3d/calc_errors.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/scatter3d/convert.js b/src/traces/scatter3d/convert.js index 2e0285f9ae6..1a463827837 100644 --- a/src/traces/scatter3d/convert.js +++ b/src/traces/scatter3d/convert.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var createLinePlot = require('gl-line3d'); diff --git a/src/traces/scatter3d/defaults.js b/src/traces/scatter3d/defaults.js index 4477fe4d741..2cde1d287bc 100644 --- a/src/traces/scatter3d/defaults.js +++ b/src/traces/scatter3d/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/scatter3d/index.js b/src/traces/scatter3d/index.js index beadce8741f..bda0bcb9119 100644 --- a/src/traces/scatter3d/index.js +++ b/src/traces/scatter3d/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scattercarpet/attributes.js b/src/traces/scattercarpet/attributes.js index d79e8562406..54a81e80b37 100644 --- a/src/traces/scattercarpet/attributes.js +++ b/src/traces/scattercarpet/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterAttrs = require('../scatter/attributes'); diff --git a/src/traces/scattercarpet/calc.js b/src/traces/scattercarpet/calc.js index 1d4b29ec777..0e914b45df9 100644 --- a/src/traces/scattercarpet/calc.js +++ b/src/traces/scattercarpet/calc.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scattercarpet/defaults.js b/src/traces/scattercarpet/defaults.js index be771231419..29986064fde 100644 --- a/src/traces/scattercarpet/defaults.js +++ b/src/traces/scattercarpet/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scattercarpet/event_data.js b/src/traces/scattercarpet/event_data.js index 420e5c04f4d..41aa4b4a739 100644 --- a/src/traces/scattercarpet/event_data.js +++ b/src/traces/scattercarpet/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt, trace, cd, pointNumber) { diff --git a/src/traces/scattercarpet/format_labels.js b/src/traces/scattercarpet/format_labels.js index 921d06ca337..d8137de273f 100644 --- a/src/traces/scattercarpet/format_labels.js +++ b/src/traces/scattercarpet/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function formatLabels(cdi, trace) { diff --git a/src/traces/scattercarpet/hover.js b/src/traces/scattercarpet/hover.js index 425d8b8e697..8da07c2e33b 100644 --- a/src/traces/scattercarpet/hover.js +++ b/src/traces/scattercarpet/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterHover = require('../scatter/hover'); diff --git a/src/traces/scattercarpet/index.js b/src/traces/scattercarpet/index.js index 1b0477f245d..05278267d60 100644 --- a/src/traces/scattercarpet/index.js +++ b/src/traces/scattercarpet/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scattercarpet/plot.js b/src/traces/scattercarpet/plot.js index df031275ef8..d94ae5d6c51 100644 --- a/src/traces/scattercarpet/plot.js +++ b/src/traces/scattercarpet/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var scatterPlot = require('../scatter/plot'); diff --git a/src/traces/scattergeo/attributes.js b/src/traces/scattergeo/attributes.js index 78beeab6edf..7a9b7509d21 100644 --- a/src/traces/scattergeo/attributes.js +++ b/src/traces/scattergeo/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/scattergeo/calc.js b/src/traces/scattergeo/calc.js index 1a390601af7..cdb811146f6 100644 --- a/src/traces/scattergeo/calc.js +++ b/src/traces/scattergeo/calc.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scattergeo/defaults.js b/src/traces/scattergeo/defaults.js index c737bc9ec4f..bee2a5d01fe 100644 --- a/src/traces/scattergeo/defaults.js +++ b/src/traces/scattergeo/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scattergeo/event_data.js b/src/traces/scattergeo/event_data.js index 36ec10d66f8..f763fd901d6 100644 --- a/src/traces/scattergeo/event_data.js +++ b/src/traces/scattergeo/event_data.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/traces/scattergeo/format_labels.js b/src/traces/scattergeo/format_labels.js index 7a618939d71..4df053a8144 100644 --- a/src/traces/scattergeo/format_labels.js +++ b/src/traces/scattergeo/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/scattergeo/hover.js b/src/traces/scattergeo/hover.js index 3d8a9442990..f9542579895 100644 --- a/src/traces/scattergeo/hover.js +++ b/src/traces/scattergeo/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Fx = require('../../components/fx'); diff --git a/src/traces/scattergeo/index.js b/src/traces/scattergeo/index.js index 14db4e687d2..173e46ba89a 100644 --- a/src/traces/scattergeo/index.js +++ b/src/traces/scattergeo/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scattergeo/plot.js b/src/traces/scattergeo/plot.js index 019515e0575..29d57b2c95a 100644 --- a/src/traces/scattergeo/plot.js +++ b/src/traces/scattergeo/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/scattergeo/select.js b/src/traces/scattergeo/select.js index 90cc4d0da80..37c70c565aa 100644 --- a/src/traces/scattergeo/select.js +++ b/src/traces/scattergeo/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var subtypes = require('../scatter/subtypes'); diff --git a/src/traces/scattergeo/style.js b/src/traces/scattergeo/style.js index 9e0432e3bb1..03f2a29ada6 100644 --- a/src/traces/scattergeo/style.js +++ b/src/traces/scattergeo/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/scattergl/attributes.js b/src/traces/scattergl/attributes.js index a06be6c88d7..ab95dca6118 100644 --- a/src/traces/scattergl/attributes.js +++ b/src/traces/scattergl/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var baseAttrs = require('../../plots/attributes'); diff --git a/src/traces/scattergl/calc.js b/src/traces/scattergl/calc.js index f22a09d1032..54069477f21 100644 --- a/src/traces/scattergl/calc.js +++ b/src/traces/scattergl/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var cluster = require('@plotly/point-cluster'); diff --git a/src/traces/scattergl/constants.js b/src/traces/scattergl/constants.js index 40a82cf6d4f..fc6558406a6 100644 --- a/src/traces/scattergl/constants.js +++ b/src/traces/scattergl/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var SYMBOL_SIZE = 20; diff --git a/src/traces/scattergl/convert.js b/src/traces/scattergl/convert.js index 719cada0f0f..165f500c181 100644 --- a/src/traces/scattergl/convert.js +++ b/src/traces/scattergl/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scattergl/defaults.js b/src/traces/scattergl/defaults.js index 0b757c76534..01436dad735 100644 --- a/src/traces/scattergl/defaults.js +++ b/src/traces/scattergl/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scattergl/edit_style.js b/src/traces/scattergl/edit_style.js index 73b67950dc2..7246fa1e641 100644 --- a/src/traces/scattergl/edit_style.js +++ b/src/traces/scattergl/edit_style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scattergl/format_labels.js b/src/traces/scattergl/format_labels.js index bd1b5c0a859..019005ec59a 100644 --- a/src/traces/scattergl/format_labels.js +++ b/src/traces/scattergl/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterFormatLabels = require('../scatter/format_labels'); diff --git a/src/traces/scattergl/helpers.js b/src/traces/scattergl/helpers.js index 25e81a7977c..e9567c998d2 100644 --- a/src/traces/scattergl/helpers.js +++ b/src/traces/scattergl/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var constants = require('./constants'); diff --git a/src/traces/scattergl/hover.js b/src/traces/scattergl/hover.js index 111598c881b..899825c9cb0 100644 --- a/src/traces/scattergl/hover.js +++ b/src/traces/scattergl/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/scattergl/index.js b/src/traces/scattergl/index.js index c32b3242252..cfed96703d7 100644 --- a/src/traces/scattergl/index.js +++ b/src/traces/scattergl/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hover = require('./hover'); diff --git a/src/traces/scattergl/plot.js b/src/traces/scattergl/plot.js index d23cea54f5d..74acc1b533e 100644 --- a/src/traces/scattergl/plot.js +++ b/src/traces/scattergl/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createScatter = require('regl-scatter2d'); diff --git a/src/traces/scattergl/scene_update.js b/src/traces/scattergl/scene_update.js index 6c74020cda8..080c524525c 100644 --- a/src/traces/scattergl/scene_update.js +++ b/src/traces/scattergl/scene_update.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scattergl/select.js b/src/traces/scattergl/select.js index 6b75acd15ae..93a5972a5ba 100644 --- a/src/traces/scattergl/select.js +++ b/src/traces/scattergl/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var subTypes = require('../scatter/subtypes'); diff --git a/src/traces/scattermapbox/attributes.js b/src/traces/scattermapbox/attributes.js index 786dc03fa6e..ab34f37d566 100644 --- a/src/traces/scattermapbox/attributes.js +++ b/src/traces/scattermapbox/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/scattermapbox/convert.js b/src/traces/scattermapbox/convert.js index 0ecf2a366a5..130db2b80af 100644 --- a/src/traces/scattermapbox/convert.js +++ b/src/traces/scattermapbox/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scattermapbox/defaults.js b/src/traces/scattermapbox/defaults.js index 0e6480109c4..7d6747783ad 100644 --- a/src/traces/scattermapbox/defaults.js +++ b/src/traces/scattermapbox/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scattermapbox/event_data.js b/src/traces/scattermapbox/event_data.js index 6fb41e2112c..2dfae6386b0 100644 --- a/src/traces/scattermapbox/event_data.js +++ b/src/traces/scattermapbox/event_data.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; diff --git a/src/traces/scattermapbox/format_labels.js b/src/traces/scattermapbox/format_labels.js index 098194142ca..091b053e0bc 100644 --- a/src/traces/scattermapbox/format_labels.js +++ b/src/traces/scattermapbox/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/scattermapbox/hover.js b/src/traces/scattermapbox/hover.js index a0bd4ed2054..fd0a26c451a 100644 --- a/src/traces/scattermapbox/hover.js +++ b/src/traces/scattermapbox/hover.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Fx = require('../../components/fx'); diff --git a/src/traces/scattermapbox/index.js b/src/traces/scattermapbox/index.js index 7f6febfed5d..eba2d449413 100644 --- a/src/traces/scattermapbox/index.js +++ b/src/traces/scattermapbox/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scattermapbox/plot.js b/src/traces/scattermapbox/plot.js index c09fc37543d..21e95b36c0a 100644 --- a/src/traces/scattermapbox/plot.js +++ b/src/traces/scattermapbox/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var convert = require('./convert'); diff --git a/src/traces/scattermapbox/select.js b/src/traces/scattermapbox/select.js index 98523f54cad..4bf52b8e69c 100644 --- a/src/traces/scattermapbox/select.js +++ b/src/traces/scattermapbox/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatterpolar/attributes.js b/src/traces/scatterpolar/attributes.js index 16a84943e5b..81b6ae72482 100644 --- a/src/traces/scatterpolar/attributes.js +++ b/src/traces/scatterpolar/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/scatterpolar/calc.js b/src/traces/scatterpolar/calc.js index 67a332d0bad..e717451b00f 100644 --- a/src/traces/scatterpolar/calc.js +++ b/src/traces/scatterpolar/calc.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scatterpolar/defaults.js b/src/traces/scatterpolar/defaults.js index 3591c7c7f1c..0d18056ba38 100644 --- a/src/traces/scatterpolar/defaults.js +++ b/src/traces/scatterpolar/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatterpolar/format_labels.js b/src/traces/scatterpolar/format_labels.js index ab008fec3ac..17fbc769e8f 100644 --- a/src/traces/scatterpolar/format_labels.js +++ b/src/traces/scatterpolar/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatterpolar/hover.js b/src/traces/scatterpolar/hover.js index c2d12f08320..5931cbef5f7 100644 --- a/src/traces/scatterpolar/hover.js +++ b/src/traces/scatterpolar/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterHover = require('../scatter/hover'); diff --git a/src/traces/scatterpolar/index.js b/src/traces/scatterpolar/index.js index cd8b6f368ef..daa49e7946b 100644 --- a/src/traces/scatterpolar/index.js +++ b/src/traces/scatterpolar/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scatterpolar/plot.js b/src/traces/scatterpolar/plot.js index 4fc2ffe592a..a62ff1bdd48 100644 --- a/src/traces/scatterpolar/plot.js +++ b/src/traces/scatterpolar/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterPlot = require('../scatter/plot'); diff --git a/src/traces/scatterpolargl/attributes.js b/src/traces/scatterpolargl/attributes.js index 8d25cecfd56..c390163735f 100644 --- a/src/traces/scatterpolargl/attributes.js +++ b/src/traces/scatterpolargl/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterPolarAttrs = require('../scatterpolar/attributes'); diff --git a/src/traces/scatterpolargl/calc.js b/src/traces/scatterpolargl/calc.js index ffe7bc0c577..fd653403c7c 100644 --- a/src/traces/scatterpolargl/calc.js +++ b/src/traces/scatterpolargl/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var calcColorscale = require('../scatter/colorscale_calc'); diff --git a/src/traces/scatterpolargl/defaults.js b/src/traces/scatterpolargl/defaults.js index da868f5934a..65c25f26a06 100644 --- a/src/traces/scatterpolargl/defaults.js +++ b/src/traces/scatterpolargl/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatterpolargl/format_labels.js b/src/traces/scatterpolargl/format_labels.js index ad5371437c9..51bf86e49cd 100644 --- a/src/traces/scatterpolargl/format_labels.js +++ b/src/traces/scatterpolargl/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterPolarFormatLabels = require('../scatterpolar/format_labels'); diff --git a/src/traces/scatterpolargl/hover.js b/src/traces/scatterpolargl/hover.js index abae8532eba..51796ef339e 100644 --- a/src/traces/scatterpolargl/hover.js +++ b/src/traces/scatterpolargl/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hover = require('../scattergl/hover'); diff --git a/src/traces/scatterpolargl/index.js b/src/traces/scatterpolargl/index.js index 8644687dc44..7472e656adc 100644 --- a/src/traces/scatterpolargl/index.js +++ b/src/traces/scatterpolargl/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scatterpolargl/plot.js b/src/traces/scatterpolargl/plot.js index 894feeccefd..deab9296856 100644 --- a/src/traces/scatterpolargl/plot.js +++ b/src/traces/scatterpolargl/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var cluster = require('@plotly/point-cluster'); diff --git a/src/traces/scatterternary/attributes.js b/src/traces/scatterternary/attributes.js index f9abd0b41ef..1b87b52ff01 100644 --- a/src/traces/scatterternary/attributes.js +++ b/src/traces/scatterternary/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/scatterternary/calc.js b/src/traces/scatterternary/calc.js index 8236688986d..c41bcde6584 100644 --- a/src/traces/scatterternary/calc.js +++ b/src/traces/scatterternary/calc.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var isNumeric = require('fast-isnumeric'); diff --git a/src/traces/scatterternary/defaults.js b/src/traces/scatterternary/defaults.js index 7ca40c24f7c..3e1569f0482 100644 --- a/src/traces/scatterternary/defaults.js +++ b/src/traces/scatterternary/defaults.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/scatterternary/event_data.js b/src/traces/scatterternary/event_data.js index 1fbb6fd882d..ef7722d7419 100644 --- a/src/traces/scatterternary/event_data.js +++ b/src/traces/scatterternary/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt, trace, cd, pointNumber) { diff --git a/src/traces/scatterternary/format_labels.js b/src/traces/scatterternary/format_labels.js index 21cde43596c..9cca19576ca 100644 --- a/src/traces/scatterternary/format_labels.js +++ b/src/traces/scatterternary/format_labels.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/scatterternary/hover.js b/src/traces/scatterternary/hover.js index 6002a8d97a2..404da45598b 100644 --- a/src/traces/scatterternary/hover.js +++ b/src/traces/scatterternary/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterHover = require('../scatter/hover'); diff --git a/src/traces/scatterternary/index.js b/src/traces/scatterternary/index.js index 4906547a836..f760b2698e3 100644 --- a/src/traces/scatterternary/index.js +++ b/src/traces/scatterternary/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/scatterternary/plot.js b/src/traces/scatterternary/plot.js index e06e64bb111..a3d0e4172b5 100644 --- a/src/traces/scatterternary/plot.js +++ b/src/traces/scatterternary/plot.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var scatterPlot = require('../scatter/plot'); diff --git a/src/traces/splom/attributes.js b/src/traces/splom/attributes.js index 7261401ae00..08b9904fb3d 100644 --- a/src/traces/splom/attributes.js +++ b/src/traces/splom/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var scatterAttrs = require('../scatter/attributes'); diff --git a/src/traces/splom/base_plot.js b/src/traces/splom/base_plot.js index fe276b1b9c3..4e305006591 100644 --- a/src/traces/splom/base_plot.js +++ b/src/traces/splom/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createLine = require('regl-line2d'); diff --git a/src/traces/splom/calc.js b/src/traces/splom/calc.js index f76381d258e..5f2c423f52c 100644 --- a/src/traces/splom/calc.js +++ b/src/traces/splom/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/splom/defaults.js b/src/traces/splom/defaults.js index aed59dd6013..2785c65b314 100644 --- a/src/traces/splom/defaults.js +++ b/src/traces/splom/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/splom/edit_style.js b/src/traces/splom/edit_style.js index b2b326d9471..f53071295a9 100644 --- a/src/traces/splom/edit_style.js +++ b/src/traces/splom/edit_style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/splom/helpers.js b/src/traces/splom/helpers.js index dca2a0a73cd..91a99d0e144 100644 --- a/src/traces/splom/helpers.js +++ b/src/traces/splom/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; exports.getDimIndex = function getDimIndex(trace, ax) { diff --git a/src/traces/splom/hover.js b/src/traces/splom/hover.js index c7c5faa86c1..1ae60244525 100644 --- a/src/traces/splom/hover.js +++ b/src/traces/splom/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var helpers = require('./helpers'); diff --git a/src/traces/splom/index.js b/src/traces/splom/index.js index 90faeeda054..8851910c646 100644 --- a/src/traces/splom/index.js +++ b/src/traces/splom/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/splom/plot.js b/src/traces/splom/plot.js index 59daf5711d3..35c0b8b13e7 100644 --- a/src/traces/splom/plot.js +++ b/src/traces/splom/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createMatrix = require('regl-splom'); diff --git a/src/traces/splom/scene_update.js b/src/traces/splom/scene_update.js index cd71b63360f..24f1c12348a 100644 --- a/src/traces/splom/scene_update.js +++ b/src/traces/splom/scene_update.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/splom/select.js b/src/traces/splom/select.js index d859fc8a0a6..84e24fb2ec8 100644 --- a/src/traces/splom/select.js +++ b/src/traces/splom/select.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/streamtube/attributes.js b/src/traces/streamtube/attributes.js index e031904a6b1..7bef021ef25 100644 --- a/src/traces/streamtube/attributes.js +++ b/src/traces/streamtube/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/streamtube/calc.js b/src/traces/streamtube/calc.js index 015d3d80f20..1b8479d7c88 100644 --- a/src/traces/streamtube/calc.js +++ b/src/traces/streamtube/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/streamtube/convert.js b/src/traces/streamtube/convert.js index 7ff38fd0616..e937037f4fc 100644 --- a/src/traces/streamtube/convert.js +++ b/src/traces/streamtube/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var tube2mesh = require('gl-streamtube3d'); diff --git a/src/traces/streamtube/defaults.js b/src/traces/streamtube/defaults.js index 977c2c3012c..20018a05d2a 100644 --- a/src/traces/streamtube/defaults.js +++ b/src/traces/streamtube/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/streamtube/index.js b/src/traces/streamtube/index.js index 2abdbd27402..1471ee8bce2 100644 --- a/src/traces/streamtube/index.js +++ b/src/traces/streamtube/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sunburst/attributes.js b/src/traces/sunburst/attributes.js index 3a83ffd61c2..01f7be1b0a2 100644 --- a/src/traces/sunburst/attributes.js +++ b/src/traces/sunburst/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var baseAttrs = require('../../plots/attributes'); diff --git a/src/traces/sunburst/base_plot.js b/src/traces/sunburst/base_plot.js index ad04a560824..a6b7543b526 100644 --- a/src/traces/sunburst/base_plot.js +++ b/src/traces/sunburst/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var plots = require('../../plots/plots'); diff --git a/src/traces/sunburst/calc.js b/src/traces/sunburst/calc.js index 6b53baf7bf3..097656a2ec5 100644 --- a/src/traces/sunburst/calc.js +++ b/src/traces/sunburst/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3Hierarchy = require('d3-hierarchy'); diff --git a/src/traces/sunburst/constants.js b/src/traces/sunburst/constants.js index d6bb20353bb..a39fefeab4b 100644 --- a/src/traces/sunburst/constants.js +++ b/src/traces/sunburst/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sunburst/defaults.js b/src/traces/sunburst/defaults.js index 08ed25e6815..8f40be23116 100644 --- a/src/traces/sunburst/defaults.js +++ b/src/traces/sunburst/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/sunburst/fx.js b/src/traces/sunburst/fx.js index b1e61193e63..a12a3f55ea8 100644 --- a/src/traces/sunburst/fx.js +++ b/src/traces/sunburst/fx.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/sunburst/helpers.js b/src/traces/sunburst/helpers.js index 53b3b9c011b..8249d6fa9a6 100644 --- a/src/traces/sunburst/helpers.js +++ b/src/traces/sunburst/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/sunburst/index.js b/src/traces/sunburst/index.js index c29563c9e6f..0cf4ea502e6 100644 --- a/src/traces/sunburst/index.js +++ b/src/traces/sunburst/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sunburst/layout_attributes.js b/src/traces/sunburst/layout_attributes.js index 45be2dc064e..88694f088c0 100644 --- a/src/traces/sunburst/layout_attributes.js +++ b/src/traces/sunburst/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/sunburst/layout_defaults.js b/src/traces/sunburst/layout_defaults.js index 020a31fb2e9..b044754610b 100644 --- a/src/traces/sunburst/layout_defaults.js +++ b/src/traces/sunburst/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/sunburst/plot.js b/src/traces/sunburst/plot.js index 4c043bd63b0..396c5938f04 100644 --- a/src/traces/sunburst/plot.js +++ b/src/traces/sunburst/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/sunburst/style.js b/src/traces/sunburst/style.js index 6ee7df78b5e..5b563f63cc0 100644 --- a/src/traces/sunburst/style.js +++ b/src/traces/sunburst/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/surface/attributes.js b/src/traces/surface/attributes.js index 1176982c7ce..0bccddc80e6 100644 --- a/src/traces/surface/attributes.js +++ b/src/traces/surface/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Color = require('../../components/color'); diff --git a/src/traces/surface/calc.js b/src/traces/surface/calc.js index 4c4e2d6f058..562ccfb2a95 100644 --- a/src/traces/surface/calc.js +++ b/src/traces/surface/calc.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var colorscaleCalc = require('../../components/colorscale/calc'); diff --git a/src/traces/surface/convert.js b/src/traces/surface/convert.js index d454e1750ef..00467d1a904 100644 --- a/src/traces/surface/convert.js +++ b/src/traces/surface/convert.js @@ -1,12 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - - 'use strict'; var createSurface = require('gl-surface3d'); diff --git a/src/traces/surface/defaults.js b/src/traces/surface/defaults.js index d7cdec3de2f..63a65137711 100644 --- a/src/traces/surface/defaults.js +++ b/src/traces/surface/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Registry = require('../../registry'); diff --git a/src/traces/surface/index.js b/src/traces/surface/index.js index b2a1593b2be..ae02751ed02 100644 --- a/src/traces/surface/index.js +++ b/src/traces/surface/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/table/attributes.js b/src/traces/table/attributes.js index b2ece5740d8..fdd562758eb 100644 --- a/src/traces/table/attributes.js +++ b/src/traces/table/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var annAttrs = require('../../components/annotations/attributes'); diff --git a/src/traces/table/base_plot.js b/src/traces/table/base_plot.js index f8e3f3f3461..f3fadcdf7fb 100644 --- a/src/traces/table/base_plot.js +++ b/src/traces/table/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var getModuleCalcData = require('../../plots/get_data').getModuleCalcData; diff --git a/src/traces/table/calc.js b/src/traces/table/calc.js index c7ce3aa810e..ea1ea5dc4b8 100644 --- a/src/traces/table/calc.js +++ b/src/traces/table/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var wrap = require('../../lib/gup').wrap; diff --git a/src/traces/table/constants.js b/src/traces/table/constants.js index 229903addc6..5c8747c07d0 100644 --- a/src/traces/table/constants.js +++ b/src/traces/table/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/table/data_preparation_helper.js b/src/traces/table/data_preparation_helper.js index 5d2d9120533..2fc0ee68ad8 100644 --- a/src/traces/table/data_preparation_helper.js +++ b/src/traces/table/data_preparation_helper.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var c = require('./constants'); diff --git a/src/traces/table/data_split_helpers.js b/src/traces/table/data_split_helpers.js index ebbf41eb800..263dc5a1b4d 100644 --- a/src/traces/table/data_split_helpers.js +++ b/src/traces/table/data_split_helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var extendFlat = require('../../lib/extend').extendFlat; diff --git a/src/traces/table/defaults.js b/src/traces/table/defaults.js index 5921beb7d53..06ff6cad3f5 100644 --- a/src/traces/table/defaults.js +++ b/src/traces/table/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/table/index.js b/src/traces/table/index.js index 31cdd2cc5df..dfbfeb2d10c 100644 --- a/src/traces/table/index.js +++ b/src/traces/table/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/table/plot.js b/src/traces/table/plot.js index 32651378abb..4ef177226f3 100644 --- a/src/traces/table/plot.js +++ b/src/traces/table/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var c = require('./constants'); diff --git a/src/traces/treemap/attributes.js b/src/traces/treemap/attributes.js index 064e2389b03..fb657e7bf0e 100644 --- a/src/traces/treemap/attributes.js +++ b/src/traces/treemap/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hovertemplateAttrs = require('../../plots/template_attributes').hovertemplateAttrs; diff --git a/src/traces/treemap/base_plot.js b/src/traces/treemap/base_plot.js index 7ab0a5b4dab..6bbe2b3ca59 100644 --- a/src/traces/treemap/base_plot.js +++ b/src/traces/treemap/base_plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var plots = require('../../plots/plots'); diff --git a/src/traces/treemap/calc.js b/src/traces/treemap/calc.js index 28259180b13..ae58143a5e0 100644 --- a/src/traces/treemap/calc.js +++ b/src/traces/treemap/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var calc = require('../sunburst/calc'); diff --git a/src/traces/treemap/constants.js b/src/traces/treemap/constants.js index 679954cc29d..1437a7f18ff 100644 --- a/src/traces/treemap/constants.js +++ b/src/traces/treemap/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/treemap/defaults.js b/src/traces/treemap/defaults.js index 0745a56675c..2800345b976 100644 --- a/src/traces/treemap/defaults.js +++ b/src/traces/treemap/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/treemap/draw_ancestors.js b/src/traces/treemap/draw_ancestors.js index 4198c7af362..294af2fc624 100644 --- a/src/traces/treemap/draw_ancestors.js +++ b/src/traces/treemap/draw_ancestors.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/treemap/draw_descendants.js b/src/traces/treemap/draw_descendants.js index 4384ccb7c25..4e1fe8062be 100644 --- a/src/traces/treemap/draw_descendants.js +++ b/src/traces/treemap/draw_descendants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/treemap/index.js b/src/traces/treemap/index.js index ae60618c0d4..ac1310694fe 100644 --- a/src/traces/treemap/index.js +++ b/src/traces/treemap/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/treemap/layout_attributes.js b/src/traces/treemap/layout_attributes.js index 4a8f461358f..19070efb80c 100644 --- a/src/traces/treemap/layout_attributes.js +++ b/src/traces/treemap/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/treemap/layout_defaults.js b/src/traces/treemap/layout_defaults.js index 378fed7842e..ce1dc4ff913 100644 --- a/src/traces/treemap/layout_defaults.js +++ b/src/traces/treemap/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/treemap/partition.js b/src/traces/treemap/partition.js index 16afa56559f..36f12d3697a 100644 --- a/src/traces/treemap/partition.js +++ b/src/traces/treemap/partition.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3Hierarchy = require('d3-hierarchy'); diff --git a/src/traces/treemap/plot.js b/src/traces/treemap/plot.js index befaee25e0b..b61aa9921b3 100644 --- a/src/traces/treemap/plot.js +++ b/src/traces/treemap/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/treemap/style.js b/src/traces/treemap/style.js index 49bf92f2f3d..86a18b083cc 100644 --- a/src/traces/treemap/style.js +++ b/src/traces/treemap/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/violin/attributes.js b/src/traces/violin/attributes.js index 4ef09166bcb..11b8372d13d 100644 --- a/src/traces/violin/attributes.js +++ b/src/traces/violin/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var boxAttrs = require('../box/attributes'); diff --git a/src/traces/violin/calc.js b/src/traces/violin/calc.js index cf0c84a05ad..39fa549097b 100644 --- a/src/traces/violin/calc.js +++ b/src/traces/violin/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/violin/cross_trace_calc.js b/src/traces/violin/cross_trace_calc.js index e0fb9698c52..8a97afcf638 100644 --- a/src/traces/violin/cross_trace_calc.js +++ b/src/traces/violin/cross_trace_calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var setPositionOffset = require('../box/cross_trace_calc').setPositionOffset; diff --git a/src/traces/violin/defaults.js b/src/traces/violin/defaults.js index 4eb66435885..662460663fd 100644 --- a/src/traces/violin/defaults.js +++ b/src/traces/violin/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/violin/helpers.js b/src/traces/violin/helpers.js index 87dc228cc2d..b83a7314c08 100644 --- a/src/traces/violin/helpers.js +++ b/src/traces/violin/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/violin/hover.js b/src/traces/violin/hover.js index e9a018cd4a4..4f3c56fb69e 100644 --- a/src/traces/violin/hover.js +++ b/src/traces/violin/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/violin/index.js b/src/traces/violin/index.js index 5cd1a82be62..93661d7d56b 100644 --- a/src/traces/violin/index.js +++ b/src/traces/violin/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/violin/layout_attributes.js b/src/traces/violin/layout_attributes.js index c89f71ba948..1a710480805 100644 --- a/src/traces/violin/layout_attributes.js +++ b/src/traces/violin/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var boxLayoutAttrs = require('../box/layout_attributes'); diff --git a/src/traces/violin/layout_defaults.js b/src/traces/violin/layout_defaults.js index 808e2ef1b5d..4d03e3c54bd 100644 --- a/src/traces/violin/layout_defaults.js +++ b/src/traces/violin/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/violin/plot.js b/src/traces/violin/plot.js index 552c85def4d..62f46650266 100644 --- a/src/traces/violin/plot.js +++ b/src/traces/violin/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/violin/style.js b/src/traces/violin/style.js index 9ec5097abc9..697668dfd99 100644 --- a/src/traces/violin/style.js +++ b/src/traces/violin/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/volume/attributes.js b/src/traces/volume/attributes.js index 6091938bde3..01da4bf507e 100644 --- a/src/traces/volume/attributes.js +++ b/src/traces/volume/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var colorScaleAttrs = require('../../components/colorscale/attributes'); diff --git a/src/traces/volume/convert.js b/src/traces/volume/convert.js index d99d2b2acd7..ac896af8ef7 100644 --- a/src/traces/volume/convert.js +++ b/src/traces/volume/convert.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var createMesh = require('gl-mesh3d'); diff --git a/src/traces/volume/defaults.js b/src/traces/volume/defaults.js index 703249479ee..ea6bd628b62 100644 --- a/src/traces/volume/defaults.js +++ b/src/traces/volume/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/volume/index.js b/src/traces/volume/index.js index e9b9f724f8b..fd1533a75dc 100644 --- a/src/traces/volume/index.js +++ b/src/traces/volume/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/waterfall/attributes.js b/src/traces/waterfall/attributes.js index 0358a87ca63..83f826c089c 100644 --- a/src/traces/waterfall/attributes.js +++ b/src/traces/waterfall/attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var barAttrs = require('../bar/attributes'); diff --git a/src/traces/waterfall/calc.js b/src/traces/waterfall/calc.js index d1f6048fd23..ee7e351e730 100644 --- a/src/traces/waterfall/calc.js +++ b/src/traces/waterfall/calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../../plots/cartesian/axes'); diff --git a/src/traces/waterfall/constants.js b/src/traces/waterfall/constants.js index 76ad0d2a33a..8562101b091 100644 --- a/src/traces/waterfall/constants.js +++ b/src/traces/waterfall/constants.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/waterfall/cross_trace_calc.js b/src/traces/waterfall/cross_trace_calc.js index 9e0c9e76ac9..5868970dd1f 100644 --- a/src/traces/waterfall/cross_trace_calc.js +++ b/src/traces/waterfall/cross_trace_calc.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var setGroupPositions = require('../bar/cross_trace_calc').setGroupPositions; diff --git a/src/traces/waterfall/defaults.js b/src/traces/waterfall/defaults.js index 932b91086b3..fb5960773b2 100644 --- a/src/traces/waterfall/defaults.js +++ b/src/traces/waterfall/defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/waterfall/event_data.js b/src/traces/waterfall/event_data.js index 3f5cee19f6f..24c05324795 100644 --- a/src/traces/waterfall/event_data.js +++ b/src/traces/waterfall/event_data.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = function eventData(out, pt /* , trace, cd, pointNumber */) { diff --git a/src/traces/waterfall/hover.js b/src/traces/waterfall/hover.js index b5bee7a7a34..53d36934939 100644 --- a/src/traces/waterfall/hover.js +++ b/src/traces/waterfall/hover.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var hoverLabelText = require('../../plots/cartesian/axes').hoverLabelText; diff --git a/src/traces/waterfall/index.js b/src/traces/waterfall/index.js index 67d761dc26b..8000ba4bc24 100644 --- a/src/traces/waterfall/index.js +++ b/src/traces/waterfall/index.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/waterfall/layout_attributes.js b/src/traces/waterfall/layout_attributes.js index bd9e83b4c90..8dc03064331 100644 --- a/src/traces/waterfall/layout_attributes.js +++ b/src/traces/waterfall/layout_attributes.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; module.exports = { diff --git a/src/traces/waterfall/layout_defaults.js b/src/traces/waterfall/layout_defaults.js index 6347ca27e02..6e19d85d2fa 100644 --- a/src/traces/waterfall/layout_defaults.js +++ b/src/traces/waterfall/layout_defaults.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../../lib'); diff --git a/src/traces/waterfall/plot.js b/src/traces/waterfall/plot.js index 1472e023c7c..a5908f755d3 100644 --- a/src/traces/waterfall/plot.js +++ b/src/traces/waterfall/plot.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/traces/waterfall/style.js b/src/traces/waterfall/style.js index aa3b8a3f053..7a0cd005ac4 100644 --- a/src/traces/waterfall/style.js +++ b/src/traces/waterfall/style.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var d3 = require('@plotly/d3'); diff --git a/src/transforms/aggregate.js b/src/transforms/aggregate.js index c49c22e84ef..eed6a937978 100644 --- a/src/transforms/aggregate.js +++ b/src/transforms/aggregate.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Axes = require('../plots/cartesian/axes'); diff --git a/src/transforms/filter.js b/src/transforms/filter.js index b2d71070bc8..e852a2a147f 100644 --- a/src/transforms/filter.js +++ b/src/transforms/filter.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/transforms/groupby.js b/src/transforms/groupby.js index 70d02e49508..4f89c70d695 100644 --- a/src/transforms/groupby.js +++ b/src/transforms/groupby.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/transforms/helpers.js b/src/transforms/helpers.js index 92202a6c201..539889b962c 100644 --- a/src/transforms/helpers.js +++ b/src/transforms/helpers.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; exports.pointsAccessorFunction = function(transforms, opts) { diff --git a/src/transforms/sort.js b/src/transforms/sort.js index 6492a0a6b97..083d3432328 100644 --- a/src/transforms/sort.js +++ b/src/transforms/sort.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; var Lib = require('../lib'); diff --git a/src/version.js b/src/version.js index eda82d7e090..1abb8cc39a5 100644 --- a/src/version.js +++ b/src/version.js @@ -1,11 +1,3 @@ -/** -* Copyright 2012-2021, Plotly, Inc. -* All rights reserved. -* -* This source code is licensed under the MIT license found in the -* LICENSE file in the root directory of this source tree. -*/ - 'use strict'; // package version injected by `npm run preprocess` From 88d94be71da47cf906b1d9f66abc9282119d1d1b Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 27 Jan 2021 09:41:53 -0500 Subject: [PATCH 4/6] no longer need to check headers in test-syntax --- tasks/test_syntax.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tasks/test_syntax.js b/tasks/test_syntax.js index 48b28537fc1..5bce9ed2dd5 100644 --- a/tasks/test_syntax.js +++ b/tasks/test_syntax.js @@ -92,15 +92,12 @@ function assertJasmineSuites() { /* * tests about the contents of source (and lib) files: - * - check for header comment * - check that we don't have any features that break in IE * - check that we don't use getComputedStyle unexpectedly * - check that require statements use lowercase (to match assertFileNames) * or match the case of the source file */ function assertSrcContents() { - var licenseSrc = constants.licenseSrc; - var licenseStr = licenseSrc.substring(2, licenseSrc.length - 2); var logs = []; // These are forbidden in IE *only in SVG* but since @@ -174,17 +171,6 @@ function assertSrcContents() { } } }); - - var header = comments[0]; - - if(!header || header.loc.start.line > 1) { - logs.push(file + ' : has no header information.'); - return; - } - - if(header.value !== licenseStr) { - logs.push(file + ' : has incorrect header information.'); - } }); /* From f4428d2f977fa47d96e47a7c4a596b0e2ffd7fbc Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 27 Jan 2021 10:14:01 -0500 Subject: [PATCH 5/6] no longer need header_src --- package.json | 1 - tasks/header_src.js | 60 --------------------------------------------- 2 files changed, 61 deletions(-) delete mode 100644 tasks/header_src.js diff --git a/package.json b/package.json index ff0eeadc48e..3e956216b50 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "preprocess": "node tasks/preprocess.js", "bundle": "node tasks/bundle.js", "header-dist": "node tasks/header_dist.js", - "header-src": "node tasks/header_src.js", "stats": "node tasks/stats.js", "find-strings": "node tasks/find_locale_strings.js", "build": "npm run preprocess && npm run find-strings && npm run bundle && npm run header-dist && npm run stats", diff --git a/tasks/header_src.js b/tasks/header_src.js deleted file mode 100644 index 1507c8fae44..00000000000 --- a/tasks/header_src.js +++ /dev/null @@ -1,60 +0,0 @@ -var path = require('path'); -var fs = require('fs'); -var falafel = require('falafel'); -var glob = require('glob'); - -var constants = require('./util/constants'); -var common = require('./util/common'); - -function updateHeadersInSrcAndLibFiles() { - var srcGlob = path.join(constants.pathToSrc, '**/*.js'); - var libGlob = path.join(constants.pathToLib, '**/*.js'); - - // remove leading '/*' and trailing '*/' for comparison with falafel output - var licenseSrc = constants.licenseSrc; - var licenseStr = licenseSrc.substring(2, licenseSrc.length - 2); - - glob('{' + srcGlob + ',' + libGlob + '}', function(err, files) { - files.forEach(function(file) { - fs.readFile(file, 'utf-8', function(err, code) { - // parse through code string while keeping track of comments - var comments = []; - falafel(code, {onComment: comments, locations: true}, function() {}); - - var header = comments[0]; - - // error out if no header is found - if(!header || header.loc.start.line > 1) { - throw new Error(file + ' : has no header information.'); - } - - // if header and license are the same remove the header! - if(isRedundant(header)) { - var codeLines = code.split('\n'); - - codeLines.splice(header.loc.start.line - 1, header.loc.end.line); - - var i; - for(i = 0; i < codeLines.length; i++) { - if(codeLines[i]) { - break; - } - } - - var newCode = codeLines.splice(i).join('\n'); - - common.writeFile(file, newCode); - } - }); - }); - }); - - function isRedundant(header) { - return ( - header.value.replace(/\s+$/gm, '') === - licenseStr.replace(/\s+$/gm, '') - ); - } -} - -updateHeadersInSrcAndLibFiles(); From adbed4bd53d86146fe026aee7b1e2502c7c1df40 Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 27 Jan 2021 14:03:47 -0500 Subject: [PATCH 6/6] remove licenseSrc from constants and use licenseDist instead of licenseSrc in locale packages --- tasks/sync_packages.js | 2 +- tasks/util/constants.js | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/tasks/sync_packages.js b/tasks/sync_packages.js index ff13cc4694f..19230eb27e4 100644 --- a/tasks/sync_packages.js +++ b/tasks/sync_packages.js @@ -239,7 +239,7 @@ function syncLocalesPkg(d) { } function writeMain(cb) { - var cnt = [constants.licenseSrc, '']; + var cnt = [constants.licenseDist, '']; localeFiles.forEach(function(f) { var n = path.basename(f, '.js'); cnt.push('exports[\'' + n + '\'] = require(\'./' + n + '.js\');'); diff --git a/tasks/util/constants.js b/tasks/util/constants.js index cd6f968bfa2..f53719664b0 100644 --- a/tasks/util/constants.js +++ b/tasks/util/constants.js @@ -124,14 +124,4 @@ module.exports = { '* Licensed under the MIT license', '*/' ].join('\n'), - - licenseSrc: [ - '/**', - '* Copyright 2012-' + year + ', Plotly, Inc.', - '* All rights reserved.', - '*', - '* This source code is licensed under the MIT license found in the', - '* LICENSE file in the root directory of this source tree.', - '*/' - ].join('\n') };