Skip to content

Commit 446149f

Browse files
committed
Add alias for grapher
1 parent 481d680 commit 446149f

8 files changed

Lines changed: 12 additions & 11 deletions

File tree

public/js/circos.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import d3 from 'd3';
22
import Circos from '../packages/circosJS@1.7.0';
33
import _ from 'underscore';
44

5-
import Grapher from './grapher';
5+
import Grapher from 'grapher';
66
import * as Helpers from './visualisation_helpers';
77
import Utils from './utils';
88

public/js/hits_overview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import d3 from 'd3';
22
import _ from 'underscore';
3-
import Grapher from './grapher';
3+
import Grapher from 'grapher';
44
import * as Helpers from './visualisation_helpers';
55
import Utils from './utils';
66

public/js/kablammo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import d3 from 'd3';
22
import _ from 'underscore';
3-
import Grapher from './grapher';
3+
import Grapher from 'grapher';
44
import * as Helpers from './visualisation_helpers';
55

66
/**

public/js/length_distribution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import d3 from 'd3';
22
import _ from 'underscore';
3-
import Grapher from './grapher';
3+
import Grapher from 'grapher';
44
import * as Helpers from './visualisation_helpers';
55

66
/**

public/js/null_plugins/grapher/histogram.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Grapher from '../../grapher';
1+
import Grapher from 'grapher';
22

33
class Graph {
44
static canCollapse() {

public/sequenceserver-report.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/sequenceserver-search.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ module.exports = (env, argv) => {
4747
'download_links': path.resolve(__dirname, pluginsPath, 'download_links.js'),
4848
'hit_buttons': path.resolve(__dirname, pluginsPath, 'hit_buttons.js'),
4949
'search_header_plugin': path.resolve(__dirname, pluginsPath, 'search_header_plugin.js'),
50+
'grapher': path.resolve(__dirname, './public/js', 'grapher.js'),
5051
'histogram': path.resolve(__dirname, pluginsPath, 'grapher', 'histogram.js'),
5152
}
5253
}

0 commit comments

Comments
 (0)