1
0
mirror of https://github.com/niklasvh/html2canvas.git synced 2023-08-10 21:13:10 +03:00

http->https

This commit is contained in:
MoyuScript 2013-05-29 22:13:22 +03:00
parent fd09c2fdca
commit 0ab0c8e03f

@ -141,7 +141,7 @@
function httpget(options) {
return Bacon.fromCallback(function(callback) {
http.get(options, function(res){
https.get(options, function(res){
var data = '';
res.on('data', function (chunk){