From fc8714b4d48524dc2c11b3be9e55b5ee808f897f Mon Sep 17 00:00:00 2001 From: Tor Hveem Date: Sat, 12 Oct 2013 21:06:24 +0200 Subject: [PATCH] Fix bug with readmarker --- css/glowingbear.css | 4 ++-- index.html | 4 ++-- js/models.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/css/glowingbear.css b/css/glowingbear.css index e1bf721..b57022e 100644 --- a/css/glowingbear.css +++ b/css/glowingbear.css @@ -40,9 +40,9 @@ td.message { word-wrap: break-word; width: 100%; } -#readmarker { +hr { margin: 0; - color: #111; + border-color: darkgreen; } .text { white-space: pre; diff --git a/index.html b/index.html index 6809b94..49b5e29 100644 --- a/index.html +++ b/index.html @@ -133,9 +133,9 @@ $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out rel - + -
+
diff --git a/js/models.js b/js/models.js index c9bab12..ceb4808 100644 --- a/js/models.js +++ b/js/models.js @@ -152,7 +152,7 @@ models.service('models', ['colors', function(colors) { // turn off the active status for the previous buffer previousBuffer.active = false; // Save the last line we saw - previousBuffer.lastSeen = previousBuffer.lines.length; + previousBuffer.lastSeen = previousBuffer.lines.length-1; } activeBuffer = _.find(this.model['buffers'], function(buffer) {