Skip to content

Commit 6bca872

Browse files
committed
rename testplots/ --> testplots-3d/
1 parent e8d75fd commit 6bca872

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+38
-40
lines changed

devtools/test_dashboard/buttons.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
var plotlist = document.getElementById('plot-list');
42
var anchor = document.getElementById('embedded-graph');
53
var image = document.getElementById('embedded-image');
@@ -111,7 +109,7 @@ function plotButtons(plots, figDir) {
111109
plotlist.appendChild(pummelButton);
112110

113111
var i = 0;
114-
var mock = require('./testplots/marker-color.json');
112+
var mock = require('./testplots-3d/marker-color.json');
115113
var statusDiv = document.getElementById('status-info');
116114

117115
pummelButton.addEventListener('click', function () {

devtools/test_dashboard/test-3d.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
'use strict';
2+
3+
var plotButtons = require('./buttons');
4+
5+
var plots = {};
6+
7+
plots['bunny-hull'] = require('./testplots-3d/bunny-hull.json');
8+
plots['ibm-plot'] = require('./testplots-3d/ibm-plot.json');
9+
plots['marker-color'] = require('./testplots-3d/marker-color.json');
10+
plots['log-axis-big'] = require('./testplots-3d/log-axis-big.json');
11+
plots['delaunay'] = require('./testplots-3d/delaunay.json');
12+
plots['log-axis'] = require('./testplots-3d/log-axis.json');
13+
plots['multi-scene'] = require('./testplots-3d/multi-scene.json');
14+
plots['surface-lighting'] = require('./testplots-3d/surface-lighting.json');
15+
plots['z-range'] = require('./testplots-3d/z-range.json');
16+
plots['mirror-ticks'] = require('./testplots-3d/mirror-ticks.json');
17+
plots['autorange-zero'] = require('./testplots-3d/autorange-zero.json');
18+
plots['contour-lines'] = require('./testplots-3d/contour-lines.json');
19+
plots['xy-defined-ticks'] = require('./testplots-3d/xy-defined-ticks.json');
20+
plots['opacity-surface'] = require('./testplots-3d/opacity-surface.json');
21+
plots['projection-traces'] = require('./testplots-3d/projection-traces.json');
22+
plots['opacity-scaling-spikes'] = require('./testplots-3d/opacity-scaling-spikes.json');
23+
plots['text-weirdness'] = require('./testplots-3d/text-weirdness.json');
24+
plots['wire-surface'] = require('./testplots-3d/wire-surface.json');
25+
plots['triangle-mesh3d'] = require('./testplots-3d/triangle.json');
26+
plots['snowden'] = require('./testplots-3d/snowden.json');
27+
plots['bunny'] = require('./testplots-3d/bunny.json');
28+
plots['ribbons'] = require('./testplots-3d/ribbons.json');
29+
plots['date-time'] = require('./testplots-3d/scatter-date.json');
30+
plots['cufflinks'] = require('./testplots-3d/cufflinks.json');
31+
plots['chrisp-nan-1'] = require('./testplots-3d/chrisp-nan-1.json');
32+
plots['marker-arrays'] = require('./testplots-3d/marker-arrays.json');
33+
plots['scatter3d-colorscale'] = require('./testplots-3d/scatter3d-colorscale.json');
34+
plots['autocolorscale'] = require('./testplots-3d/autocolorscale.json');
35+
plots['nan-holes'] = require('./testplots-3d/nan-holes.json');
36+
37+
plotButtons(plots, './testplots-3d/');

devtools/test_dashboard/test.js

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)