capture-template
Advanced tools
Comparing version
@@ -188,18 +188,20 @@ "use strict"; | ||
return _this.nightmare.viewport(bodySize.width, bodySize.height); | ||
}) | ||
.then(function () { | ||
return _this.nightmare.evaluate(function (captureSelector) { | ||
var element = document.querySelector(captureSelector); | ||
var rect = element.getBoundingClientRect(); | ||
return { | ||
x: Math.ceil(rect.left), | ||
y: Math.ceil(rect.top), | ||
height: Math.ceil(rect.bottom - rect.top), | ||
width: Math.ceil(rect.right - rect.left), | ||
}; | ||
}, options.captureSelector || options.waitSelector); | ||
}) | ||
.then(function (rect) { | ||
return _this.nightmare.screenshot(outputFilePath, rect); | ||
})]; | ||
case 1: | ||
_a.sent(); | ||
this.nightmare.evaluate(function (captureSelector) { | ||
var element = document.querySelector(captureSelector); | ||
var rect = element.getBoundingClientRect(); | ||
return { | ||
x: Math.ceil(rect.left), | ||
y: Math.ceil(rect.top), | ||
height: Math.ceil(rect.bottom - rect.top), | ||
width: Math.ceil(rect.right - rect.left), | ||
}; | ||
}, options.captureSelector || options.waitSelector) | ||
.then(function (rect) { | ||
return _this.nightmare.screenshot(outputFilePath, rect); | ||
}); | ||
return [2 /*return*/]; | ||
@@ -206,0 +208,0 @@ } |
{ | ||
"name": "capture-template", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "This library is responsible for expanding a template web page and then capturing it PNG or PDF.", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
Sorry, the diff of this file is not supported yet
82110
0.28%1376
0.15%