Browse Source

Renamed `unified` to `shared`

flowchartTest
jos 9 years ago
parent
commit
cdaf6682b2
5 changed files with 4 additions and 4 deletions
  1. +1
    -1
      lib/network/modules/EdgesHandler.js
  2. +1
    -1
      lib/network/modules/NodesHandler.js
  3. +1
    -1
      lib/network/modules/components/Edge.js
  4. +1
    -1
      lib/network/modules/components/Node.js
  5. +0
    -0
      lib/network/modules/components/shared/Label.js

+ 1
- 1
lib/network/modules/EdgesHandler.js View File

@ -3,7 +3,7 @@ var DataSet = require('../../DataSet');
var DataView = require('../../DataView');
import Edge from "./components/Edge"
import Label from "./components/unified/Label"
import Label from "./components/shared/Label"
class EdgesHandler {
constructor(body, images, groups) {

+ 1
- 1
lib/network/modules/NodesHandler.js View File

@ -3,7 +3,7 @@ var DataSet = require('../../DataSet');
var DataView = require('../../DataView');
import Node from "./components/Node";
import Label from "./components/unified/Label";
import Label from "./components/shared/Label";
class NodesHandler {
constructor(body, images, groups, layoutEngine) {

+ 1
- 1
lib/network/modules/components/Edge.js View File

@ -1,6 +1,6 @@
var util = require('../../../util');
import Label from './unified/Label'
import Label from './shared/Label'
import BezierEdgeDynamic from './edges/BezierEdgeDynamic'
import BezierEdgeStatic from './edges/BezierEdgeStatic'
import StraightEdge from './edges/StraightEdge'

+ 1
- 1
lib/network/modules/components/Node.js View File

@ -1,6 +1,6 @@
var util = require('../../../util');
import Label from './unified/Label'
import Label from './shared/Label'
import Box from './nodes/shapes/Box'
import Circle from './nodes/shapes/Circle'

lib/network/modules/components/unified/Label.js → lib/network/modules/components/shared/Label.js View File


Loading…
Cancel
Save