Skip to content

Commit d36ae4e

Browse files
committed
Update file references and create new build
1 parent 7d7c6ad commit d36ae4e

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ module.exports = function(grunt) {
22
grunt.initConfig({
33
pkg: grunt.file.readJSON('package.json'),
44
jshint: {
5-
all: ['Gruntfile.js', 'Graph.js', 'drawings/*.js', 'layouts/*.js', 'utils/Label.js', 'utils/ObjectSelection.js']
5+
all: ['Gruntfile.js', 'src/graph.js', 'src/layouts/*.js', 'src/utils/Label.js', 'src/utils/ObjectSelection.js']
66
},
77
uglify: {
88
options: {
99
banner: '/*! <%= pkg.name %> <%= pkg.version %> */\n'
1010
},
1111
graphVisualization: {
1212
files: {
13-
'build/graph.min.js': ['Graph.js', 'webgl-frameworks/three.min.js', 'utils/*.js', 'layouts/*.js', 'drawings/*.js']
13+
'build/graph.min.js': ['webgl-frameworks/three.min.js', 'src/graph.js', 'src/utils/*.js', 'src/layouts/*.js']
1414
}
1515
}
1616
}

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The project consists of
2222

2323
### Graph Structure
2424

25-
This is implemented in graph-visualization/Graph.js.
25+
This is implemented in graph-visualization/src/graph.js.
2626

2727
Usage:
2828

@@ -43,7 +43,7 @@ A node has the properties
4343
- `position`, Object for x, y, z position, default is {}
4444
- `data`, Object with further properties, e.g. properties for a graph layout
4545

46-
For more details have a look at the [source code](https://github.com/davidpiegza/Graph-Visualization/blob/master/Graph.js).
46+
For more details have a look at the [source code](https://github.com/davidpiegza/Graph-Visualization/blob/master/src/graph.js).
4747

4848
### Graph Layout
4949

@@ -66,7 +66,7 @@ The graph layout gets the created graph and calculates new positions for the nod
6666

6767
The graph layout may extend the nodes and edges with custom properties in the data object.
6868

69-
See [force-based-layout.js](https://github.com/davidpiegza/Graph-Visualization/blob/master/layouts/force-based-layout.js) for example usage.
69+
See [force-based-layout.js](https://github.com/davidpiegza/Graph-Visualization/blob/master/src/layouts/force-based-layout.js) for example usage.
7070

7171

7272
## Contribution

0 commit comments

Comments
 (0)