put a CORS header on htmlshot's /shot endpoint.

This commit is contained in:
Atul Varma 2015-02-13 06:27:09 -05:00
Родитель 3b44be6d2b
Коммит 031a6def2d
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -16,6 +16,7 @@ app.get('/', function(req, res, next) {
app.post('/shot', bodyParser.urlencoded({
extended: false
}), function(req, res, next) {
res.set('Access-Control-Allow-Origin', '*');
var html = (req.body.html || '').trim();
if (!html) return res.sendStatus(204);
res.type('image/png');