Add google maps test

This commit is contained in:
MoyuScript
2014-09-27 20:20:08 +03:00
parent 6d01d29b27
commit 998bfb496e
5 changed files with 52 additions and 7 deletions

4
dist/html2canvas.js vendored
View File

@@ -1001,8 +1001,8 @@ ImageLoader.prototype.fetch = function(nodes) {
this.images.forEach(function(image, index) {
image.promise.then(function() {
log("Succesfully loaded image #"+ (index+1));
}, function() {
log("Failed loading image #"+ (index+1));
}, function(e) {
log("Failed loading image #"+ (index+1), e);
});
});
this.ready = Promise.all(this.images.map(this.getPromise));

File diff suppressed because one or more lines are too long