From 6d2081c59d4d006a3fae6d338dc9f39912494a40 Mon Sep 17 00:00:00 2001 From: John McLear Date: Wed, 20 Nov 2013 17:18:06 +0000 Subject: [PATCH] fix export page breaks --- index.js | 2 +- static/css/page_view.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index fbb4d83..ba7f5bd 100644 --- a/index.js +++ b/index.js @@ -14,7 +14,7 @@ exports.getLineHTMLForExport = function (hook, context) { var header = _analyzeLine(context.attribLine, context.apool); if (header) { var inlineStyle = getInlineStyle(header); - return "" + context.text.substring(1) + ""; + return "" + context.text.substring(1) + ""; } } diff --git a/static/css/page_view.css b/static/css/page_view.css index ee957a9..6255147 100644 --- a/static/css/page_view.css +++ b/static/css/page_view.css @@ -16,7 +16,7 @@ iframe.page_view { padding:100px !important; background-color:#fff; min-height:800px; - top:150px; + top:50px; } }