diff --git a/editor/editor.php b/editor/editor.php index f8048a1c9bbc42db7e84cd152d33e1dc0014f204..1a3ca47b2476fa20737d77fc42aa578ae3ff1814 100644 --- a/editor/editor.php +++ b/editor/editor.php @@ -4,14 +4,6 @@ <div id="2d-graph"></div> <section id="toolbar"></section> <section id="tool-menu"> - <div id="connect-menu" class="hidden"> - <label for="link-type">Link Type</label> - <select id="link-type" name="link-type"> - <option value="Vorlesung">Lecture</option> - <option value="Algorithmus">Algorithm</option> - <option value="Definition">Definition</option> - </select> - </div> <div id="collect-menu" class="hidden"> <h3>Collected items</h3> <button id="clear-collection">Clear</button> diff --git a/editor/js/tools/connecttool.js b/editor/js/tools/connecttool.js index d0e8efc4cefea2a6db54541cd0b969ac4ac53250..610e51d59371e1b14d52396547fbec1856add3f0 100644 --- a/editor/js/tools/connecttool.js +++ b/editor/js/tools/connecttool.js @@ -1,13 +1,12 @@ import Tool from "./tool"; import { graph, state } from "../editor"; import * as Graph from "../graph"; -import ConnectMenu from "./menus/connectmenu"; const KEEP_SOURCE_KEY_ID = 17; export default class ConnectTool extends Tool { constructor(key) { - super("Connect two nodes", "connect", key, new ConnectMenu()); + super("Connect two nodes", "connect", key); this.keepSource = false; } @@ -23,7 +22,6 @@ export default class ConnectTool extends Tool { // Add new link var details = {}; - details[Graph.LINK_TYPE] = this.menu.value("link-type"); var link = graph.addLink( state.selectedItem[Graph.NODE_ID], diff --git a/editor/js/tools/menus/connectmenu.js b/editor/js/tools/menus/connectmenu.js deleted file mode 100644 index 4f148b0b8e815e1c1dad3212365b0f5578bfb780..0000000000000000000000000000000000000000 --- a/editor/js/tools/menus/connectmenu.js +++ /dev/null @@ -1,15 +0,0 @@ -import ToolMenu from "./toolmenu"; - -const LINK_TYPE_SEL = "#link-type"; - -export default class ConnectMenu extends ToolMenu { - constructor() { - super(); - } - - beforeGet(key) { - if (key === "link-type") { - return this.find(LINK_TYPE_SEL).val(); - } - } -} \ No newline at end of file