From 0d8782d3e50dfef5bc8282abe55839a7c7795a86 Mon Sep 17 00:00:00 2001
From: Reiner Jung <reiner.jung@email.uni-kiel.de>
Date: Thu, 30 Mar 2017 22:09:42 +0200
Subject: [PATCH] uppdated frontend setup

---
 .../architecture-visualisation-cytoscape/style.js           | 4 ++--
 config/environment.js                                       | 6 +++---
 ember-cli-build.js                                          | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app/components/architecture-visualisation-cytoscape/style.js b/app/components/architecture-visualisation-cytoscape/style.js
index 4740ba6..37161c2 100644
--- a/app/components/architecture-visualisation-cytoscape/style.js
+++ b/app/components/architecture-visualisation-cytoscape/style.js
@@ -17,10 +17,10 @@ node { /* all nodes */
     shape: roundrectangle;
     text-valign: center;
     text-halign: center;
-    width: 100px;
+    width: 150px;
     height: 60px;
     text-wrap: wrap;
-    text-max-width: 100px;
+    text-max-width: 150px;
 }
 
 $node > node { /* compounds. "Nodes" in meta model. $ selects the parent node that has a node instead of the node (as css would) */
diff --git a/config/environment.js b/config/environment.js
index f4e7a2e..3ea2c68 100644
--- a/config/environment.js
+++ b/config/environment.js
@@ -38,8 +38,8 @@ module.exports = function(environment) {
     // ENV.APP.LOG_TRANSITIONS = true;
     // ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
     // ENV.APP.LOG_VIEW_LOOKUPS = true;
-    ENV.APP.API_ROOT = 'http://localhost:8080';
-    ENV.APP.WEBSOCKET_ROOT = 'ws://localhost:8080';
+    ENV.APP.API_ROOT = 'http://192.168.48.222:8080';
+    ENV.APP.WEBSOCKET_ROOT = 'ws://192.168.48.222:8080';
     ENV.APP.WEBSOCKET_RECONNECT = true;
 
     }
@@ -61,4 +61,4 @@ module.exports = function(environment) {
     }
 
     return ENV;
-};
\ No newline at end of file
+};
diff --git a/ember-cli-build.js b/ember-cli-build.js
index 5e4a88d..bf513fd 100644
--- a/ember-cli-build.js
+++ b/ember-cli-build.js
@@ -26,7 +26,7 @@ module.exports = function(defaults) {
   // please specify an object with the list of modules as keys
   // along with the exports of each module as its value.
 
-  app.import('bower_components/webcola/WebCola/cola.js');
+  app.import('bower_components/webcola/WebCola/cola.min.js');
   app.import('bower_components/Flot/jquery.flot.js'); // time-series-plot component
   app.import('bower_components/Flot/jquery.flot.time.js');
   app.import('bower_components/Flot/jquery.flot.resize.js');
-- 
GitLab