From a0748e32618722688fddc12ea35bae0c8dd1f3d7 Mon Sep 17 00:00:00 2001 From: Kyle Mahan Date: Tue, 12 May 2015 08:17:35 -0700 Subject: [PATCH] remove spurious println --- woodwind/static/feed.js | 1 - woodwind/static/style.css | 12 +++++++----- woodwind/static/style.scss | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/woodwind/static/feed.js b/woodwind/static/feed.js index a7b3563..d82210e 100644 --- a/woodwind/static/feed.js +++ b/woodwind/static/feed.js @@ -96,7 +96,6 @@ $(function(){ ws.send(topic); }; ws.onmessage = function(event) { - console.log(event); var data = JSON.parse(event.data); foldNewEntries(data.entries); }; diff --git a/woodwind/static/style.css b/woodwind/static/style.css index 0ec9a6a..3c06fc5 100644 --- a/woodwind/static/style.css +++ b/woodwind/static/style.css @@ -415,11 +415,13 @@ article { max-height: 240px; max-width: 240px; } article div { - overflow: auto; } - article div p:first-child { - margin-top: 0; } - article div p:last-child { - margin-bottom: 0; } + overflow: auto; + /*p:first-child { + margin-top: 0; + } + p:last-child { + margin-bottom: 0; + }*/ } article img, article video { max-width: 100%; } article header { diff --git a/woodwind/static/style.scss b/woodwind/static/style.scss index fa3a578..3b9e99f 100644 --- a/woodwind/static/style.scss +++ b/woodwind/static/style.scss @@ -93,12 +93,12 @@ article { div { overflow: auto; - p:first-child { + /*p:first-child { margin-top: 0; } p:last-child { margin-bottom: 0; - } + }*/ } img, video {