Browse Source

Removed spam

flowchartTest
jos 9 years ago
parent
commit
7248587d67
46 changed files with 2 additions and 163 deletions
  1. +0
    -4
      lib/network/modules/CanvasRenderer.js
  2. +0
    -4
      lib/network/modules/Clustering.js
  3. +0
    -5
      lib/network/modules/ConfigurationSystem.js
  4. +0
    -5
      lib/network/modules/EdgesHandler.js
  5. +0
    -5
      lib/network/modules/InteractionHandler.js
  6. +0
    -4
      lib/network/modules/LayoutEngine.js
  7. +0
    -4
      lib/network/modules/NodesHandler.js
  8. +0
    -4
      lib/network/modules/PhysicsEngine.js
  9. +0
    -4
      lib/network/modules/SelectionHandler.js
  10. +0
    -4
      lib/network/modules/View.js
  11. +0
    -4
      lib/network/modules/components/ColorPicker.js
  12. +2
    -2
      lib/network/modules/components/Edge.js
  13. +0
    -4
      lib/network/modules/components/edges/BezierEdgeDynamic.js
  14. +0
    -4
      lib/network/modules/components/edges/BezierEdgeStatic.js
  15. +0
    -4
      lib/network/modules/components/edges/StraightEdge.js
  16. +0
    -4
      lib/network/modules/components/edges/util/BezierEdgeBase.js
  17. +0
    -3
      lib/network/modules/components/edges/util/EdgeBase.js
  18. +0
    -3
      lib/network/modules/components/nodes/shapes/Box.js
  19. +0
    -3
      lib/network/modules/components/nodes/shapes/Circle.js
  20. +0
    -3
      lib/network/modules/components/nodes/shapes/CircularImage.js
  21. +0
    -3
      lib/network/modules/components/nodes/shapes/Database.js
  22. +0
    -3
      lib/network/modules/components/nodes/shapes/Diamond.js
  23. +0
    -3
      lib/network/modules/components/nodes/shapes/Dot.js
  24. +0
    -3
      lib/network/modules/components/nodes/shapes/Ellipse.js
  25. +0
    -3
      lib/network/modules/components/nodes/shapes/Empty.js
  26. +0
    -3
      lib/network/modules/components/nodes/shapes/Icon.js
  27. +0
    -3
      lib/network/modules/components/nodes/shapes/Image.js
  28. +0
    -3
      lib/network/modules/components/nodes/shapes/Square.js
  29. +0
    -3
      lib/network/modules/components/nodes/shapes/Star.js
  30. +0
    -3
      lib/network/modules/components/nodes/shapes/Text.js
  31. +0
    -3
      lib/network/modules/components/nodes/shapes/Triangle.js
  32. +0
    -3
      lib/network/modules/components/nodes/shapes/TriangleDown.js
  33. +0
    -3
      lib/network/modules/components/nodes/util/CircleImageBase.js
  34. +0
    -4
      lib/network/modules/components/nodes/util/NodeBase.js
  35. +0
    -3
      lib/network/modules/components/nodes/util/ShapeBase.js
  36. +0
    -4
      lib/network/modules/components/physics/BarnesHutSolver.js
  37. +0
    -4
      lib/network/modules/components/physics/CentralGravitySolver.js
  38. +0
    -4
      lib/network/modules/components/physics/HierarchicalRepulsionSolver.js
  39. +0
    -4
      lib/network/modules/components/physics/HierarchicalSpringSolver.js
  40. +0
    -4
      lib/network/modules/components/physics/RepulsionSolver.js
  41. +0
    -4
      lib/network/modules/components/physics/SpringSolver.js
  42. +0
    -4
      lib/network/modules/components/unified/Label.js
  43. +0
    -3
      lib/timeline/DateUtil.js
  44. +0
    -3
      lib/timeline/component/graph2d_types/bar.js
  45. +0
    -3
      lib/timeline/component/graph2d_types/line.js
  46. +0
    -3
      lib/timeline/component/graph2d_types/points.js

+ 0
- 4
lib/network/modules/CanvasRenderer.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 26-Feb-15.
*/
if (typeof window !== 'undefined') {
window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;

+ 0
- 4
lib/network/modules/Clustering.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 24-Feb-15.
*/
var util = require("../../util");
import Cluster from './components/nodes/Cluster'

+ 0
- 5
lib/network/modules/ConfigurationSystem.js View File

@ -1,8 +1,3 @@
/**
* Created by Alex on 3/26/2015.
*/
var util = require('../../util');
import ColorPicker from './components/ColorPicker'

+ 0
- 5
lib/network/modules/EdgesHandler.js View File

@ -1,8 +1,3 @@
/**
* Created by Alex on 3/4/2015.
*/
var util = require("../../util");
var DataSet = require('../../DataSet');
var DataView = require('../../DataView');

+ 0
- 5
lib/network/modules/InteractionHandler.js View File

@ -1,8 +1,3 @@
/**
* Created by Alex on 2/27/2015.
*
*/
let util = require('../../util');
import NavigationHandler from "./components/NavigationHandler"

+ 0
- 4
lib/network/modules/LayoutEngine.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/3/2015.
*/
var util = require('../../util');
class LayoutEngine {

+ 0
- 4
lib/network/modules/NodesHandler.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/4/2015.
*/
var util = require("../../util");
var DataSet = require('../../DataSet');
var DataView = require('../../DataView');

+ 0
- 4
lib/network/modules/PhysicsEngine.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/23/2015.
*/
import BarnesHutSolver from './components/physics/BarnesHutSolver';
import Repulsion from './components/physics/RepulsionSolver';
import HierarchicalRepulsion from './components/physics/HierarchicalRepulsionSolver';

+ 0
- 4
lib/network/modules/SelectionHandler.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/27/2015.
*/
var Node = require("./components/Node");
var util = require('../../util');

+ 0
- 4
lib/network/modules/View.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 26-Feb-15.
*/
var util = require('../../util');
class View {

+ 0
- 4
lib/network/modules/components/ColorPicker.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/27/2015.
*/
let Hammer = require('../../../module/hammer');
let hammerUtil = require('../../../hammerUtil');
let util = require('../../../util');

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

@ -1,10 +1,10 @@
var util = require('../../../util');
import Label from './unified/Label.js'
import Label from './unified/Label'
import BezierEdgeDynamic from './edges/BezierEdgeDynamic'
import BezierEdgeStatic from './edges/BezierEdgeStatic'
import StraightEdge from './edges/StraightEdge'
/**
* @class Edge
*

+ 0
- 4
lib/network/modules/components/edges/BezierEdgeDynamic.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/20/2015.
*/
import BezierEdgeBase from './util/BezierEdgeBase'
class BezierEdgeDynamic extends BezierEdgeBase {

+ 0
- 4
lib/network/modules/components/edges/BezierEdgeStatic.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/20/2015.
*/
import BezierEdgeBase from './util/BezierEdgeBase'
class BezierEdgeStatic extends BezierEdgeBase {

+ 0
- 4
lib/network/modules/components/edges/StraightEdge.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/20/2015.
*/
import EdgeBase from './util/EdgeBase'
class StraightEdge extends EdgeBase {

+ 0
- 4
lib/network/modules/components/edges/util/BezierEdgeBase.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/20/2015.
*/
import EdgeBase from './EdgeBase'
class BezierEdgeBase extends EdgeBase {

+ 0
- 3
lib/network/modules/components/edges/util/EdgeBase.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/20/2015.
*/
let util = require("../../../../../util")
class EdgeBase {

+ 0
- 3
lib/network/modules/components/nodes/shapes/Box.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import NodeBase from '../util/NodeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Circle.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import CircleImageBase from '../util/CircleImageBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/CircularImage.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';

+ 0
- 3
lib/network/modules/components/nodes/shapes/Database.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import NodeBase from '../util/NodeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Diamond.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import ShapeBase from '../util/ShapeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Dot.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import ShapeBase from '../util/ShapeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Ellipse.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import NodeBase from '../util/NodeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Empty.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import NodeBase from '../util/NodeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Icon.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import NodeBase from '../util/NodeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Image.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import CircleImageBase from '../util/CircleImageBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Square.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import ShapeBase from '../util/ShapeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Star.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import ShapeBase from '../util/ShapeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Text.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import NodeBase from '../util/NodeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/Triangle.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import ShapeBase from '../util/ShapeBase'

+ 0
- 3
lib/network/modules/components/nodes/shapes/TriangleDown.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/18/2015.
*/
'use strict';
import ShapeBase from '../util/ShapeBase'

+ 0
- 3
lib/network/modules/components/nodes/util/CircleImageBase.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/19/2015.
*/
import NodeBase from '../util/NodeBase'
class CircleImageBase extends NodeBase {

+ 0
- 4
lib/network/modules/components/nodes/util/NodeBase.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 3/19/2015.
*/
class NodeBase {
constructor(options, body, labelModule) {
this.body = body;

+ 0
- 3
lib/network/modules/components/nodes/util/ShapeBase.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 3/19/2015.
*/
import NodeBase from '../util/NodeBase'
class ShapeBase extends NodeBase {

+ 0
- 4
lib/network/modules/components/physics/BarnesHutSolver.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/23/2015.
*/
class BarnesHutSolver {
constructor(body, physicsBody, options) {
this.body = body;

+ 0
- 4
lib/network/modules/components/physics/CentralGravitySolver.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/23/2015.
*/
class CentralGravitySolver {
constructor(body, physicsBody, options) {
this.body = body;

+ 0
- 4
lib/network/modules/components/physics/HierarchicalRepulsionSolver.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/23/2015.
*/
class HierarchicalRepulsionSolver {
constructor(body, physicsBody, options) {
this.body = body;

+ 0
- 4
lib/network/modules/components/physics/HierarchicalSpringSolver.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/25/2015.
*/
class HierarchicalSpringSolver {
constructor(body, physicsBody, options) {
this.body = body;

+ 0
- 4
lib/network/modules/components/physics/RepulsionSolver.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/23/2015.
*/
class RepulsionSolver {
constructor(body, physicsBody, options) {
this.body = body;

+ 0
- 4
lib/network/modules/components/physics/SpringSolver.js View File

@ -1,7 +1,3 @@
/**
* Created by Alex on 2/23/2015.
*/
class SpringSolver {
constructor(body, physicsBody, options) {
this.body = body;

+ 0
- 4
lib/network/modules/components/unified/Label.js View File

@ -1,9 +1,5 @@
let util = require('../../../../util');
/**
* Created by Alex on 3/17/2015.
*/
class Label {
constructor(body,options) {
this.body = body;

+ 0
- 3
lib/timeline/DateUtil.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 10/3/2014.
*/
var moment = require('../module/moment');

+ 0
- 3
lib/timeline/component/graph2d_types/bar.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 11/11/2014.
*/
var DOMutil = require('../../../DOMutil');
var Points = require('./points');

+ 0
- 3
lib/timeline/component/graph2d_types/line.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 11/11/2014.
*/
var DOMutil = require('../../../DOMutil');
var Points = require('./points');

+ 0
- 3
lib/timeline/component/graph2d_types/points.js View File

@ -1,6 +1,3 @@
/**
* Created by Alex on 11/11/2014.
*/
var DOMutil = require('../../../DOMutil');
function Points(groupId, options) {

Loading…
Cancel
Save