Skip to content

Commit f1fa736

Browse files
committed
PR feedback 2
1 parent d7baa61 commit f1fa736

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/traces/parcoords/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Parcoords.colorbar = require('./colorbar');
1919
Parcoords.moduleType = 'trace';
2020
Parcoords.name = 'parcoords';
2121
Parcoords.basePlotModule = require('./base_plot');
22-
Parcoords.categories = ['parcoords', 'lineColorscale'];
22+
Parcoords.categories = ['gl'];
2323
Parcoords.meta = {
2424
description: [
2525
'Parallel coordinates for multidimensional exploratory data analysis.',

src/traces/parcoords/lines.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
var utils = require('./utils');
1212
var createREGL = require('regl');
1313
var glslify = require('glslify');
14-
var vertexShaderSource = glslify('./shaderVertex.glsl');
15-
var fragmentShaderSource = glslify('./shaderFragment.glsl');
14+
var vertexShaderSource = glslify('./shaders/vertex.glsl');
15+
var fragmentShaderSource = glslify('./shaders/fragment.glsl');
1616

1717
var depthLimitEpsilon = 1e-6; // don't change; otherwise near/far plane lines are lost
1818
var filterEpsilon = 1e-3; // don't change; otherwise filter may lose lines on domain boundaries

0 commit comments

Comments
 (0)