diff options
-rw-r--r-- | INSTALLING.rst | 2 | ||||
-rw-r--r-- | web/index.html | 4 | ||||
-rw-r--r-- | web/js/nms-map.js | 2 | ||||
-rw-r--r-- | web/js/nms-ui-switch.js | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/INSTALLING.rst b/INSTALLING.rst index 3920775..5770c9f 100644 --- a/INSTALLING.rst +++ b/INSTALLING.rst @@ -33,7 +33,7 @@ As root: As ``$YOURUSER``:: - $ git clone https://github.com/tech-server/gondul.git + $ git clone https://github.com/gathering/gondul.git $ cd gondul/ansible $ ansible-playbook -i inventory-localhost site.yml diff --git a/web/index.html b/web/index.html index 23431b1..5e04beb 100644 --- a/web/index.html +++ b/web/index.html @@ -275,8 +275,8 @@ </div> </div> </div> - <div id="genericPanelContainer" style="ma-width: 60%; position: absolute; display: grid; grid-template-coumns: repeat(auto-fit,minmax(30%,100%));grid-gap: 10px; z-index: 120;"> - <div id="info-box-container" class="hidden" style="grid-column: 1 / auto; max-width: 700px; min-width: 500px;"> </div> + <div id="genericPanelContainer" style="max-width: 60%; position: absolute; display: grid; grid-template-coumns: repeat(auto-fit,minmax(30%,100%));grid-gap: 10px; z-index: 120;"> + <div id="info-box-container" class="hidden" style="grid-column: 1 / auto; max-width: 800px; min-width: 700px;"> </div> </div> </div> diff --git a/web/js/nms-map.js b/web/js/nms-map.js index 179d8e5..d5bc044 100644 --- a/web/js/nms-map.js +++ b/web/js/nms-map.js @@ -565,7 +565,7 @@ nmsMap._moveSubmit = function() { var myData = JSON.stringify([data]); $.ajax({ type: "POST", - url: "/api/write/switch-update", + url: "/api/write/switches", dataType: "text", data:myData, success: function (data, textStatus, jqXHR) { diff --git a/web/js/nms-ui-switch.js b/web/js/nms-ui-switch.js index f66a2b2..b7cbc7c 100644 --- a/web/js/nms-ui-switch.js +++ b/web/js/nms-ui-switch.js @@ -28,7 +28,7 @@ class nmsNewNet extends nmsPanel { class nmsModThing extends nmsBox { constructor(data) { - super("div",{html:{className: "panel-body"}}); + super("div"); this.identifier = data.identifier; this.invalidate = data.invalidate; this.api = data.api; |