remove spurious println

This commit is contained in:
Kyle Mahan 2015-05-12 08:17:35 -07:00
parent 66cdbe7a54
commit a0748e3261
3 changed files with 9 additions and 8 deletions

View file

@ -96,7 +96,6 @@ $(function(){
ws.send(topic);
};
ws.onmessage = function(event) {
console.log(event);
var data = JSON.parse(event.data);
foldNewEntries(data.entries);
};

View file

@ -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 {

View file

@ -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 {