diff --git a/app/components/architecture-visualisation-cytoscape/style.js b/app/components/architecture-visualisation-cytoscape/style.js index 4740ba6d57e964495b91fd18b3306ae68aa691eb..37161c2f278fb7a484c6402bdc6b3dd9084e8da1 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 f4e7a2ea7ab617c54b8d5af9b699ca9e68e4d878..3ea2c687c5c2e51dd1834eb037daef9ed0c5b61a 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 5e4a88d6d69014d5709913483fc1069d459340eb..bf513fdf9bf4af4d930ab36a732f186655a9d85c 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');