mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
7 lines
225 B
JavaScript
7 lines
225 B
JavaScript
if (typeof(Object.create) !== "function" || typeof(document.createElement("canvas").getContext) !== "function") {
|
|
window.html2canvas = function() {
|
|
return Promise.reject("No canvas support");
|
|
};
|
|
return;
|
|
}
|