From 8d06df0c0124ca1a49ac9c2efed1f3d7a9ff0696 Mon Sep 17 00:00:00 2001 From: Gonzalo Fabian Cameto Hernandez <gonzalo.cameto@fing.edu.uy> Date: Sun, 12 Nov 2017 16:38:18 -0300 Subject: [PATCH] Fix, overflow horizontal en consola interactiva (modo avanzado) --- Frontend Angular 4/src/app/shared/services/ghci.service.ts | 2 +- Frontend Angular 4/src/styles/console.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Frontend Angular 4/src/app/shared/services/ghci.service.ts b/Frontend Angular 4/src/app/shared/services/ghci.service.ts index 92b22c74..d8e0e34e 100644 --- a/Frontend Angular 4/src/app/shared/services/ghci.service.ts +++ b/Frontend Angular 4/src/app/shared/services/ghci.service.ts @@ -336,7 +336,7 @@ export class GHCIService { if(this.connection && this.connection.readyState == WebSocket.OPEN){ this.connection.send(JSON.stringify(message)); }else{ - this.errorConsole("Sin conexión al servidor..."); + this.errorConsole("Sin conexión al servidor...\n"); } } } diff --git a/Frontend Angular 4/src/styles/console.css b/Frontend Angular 4/src/styles/console.css index 3020e3eb..890b1341 100644 --- a/Frontend Angular 4/src/styles/console.css +++ b/Frontend Angular 4/src/styles/console.css @@ -37,7 +37,7 @@ /* font-weight: normal;*/ } - .jqconsole-prompt, .jqconsole-old-prompt, .jqconsole-output { + .jqconsole-prompt, .jqconsole-old-prompt, .jqconsole-output, .jqconsole-logs, .jqconsole-error { word-wrap: break-word; white-space: pre-wrap; -- GitLab