Remove margin in rendered deck image

This commit is contained in:
Adam Goldsmith 2017-10-12 03:12:00 -04:00
parent 933c275243
commit 25ab1118bf
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ function handleUpload(res, req) {
}
});
page.property('zoomFactor', 2); // pretty arbitrary
page.property('content', json.body);
page.property('content', '<body style="margin:0;">' + json.body + '</body>');
}));
decks.push(deckJSON.name);
});