Compare commits

...

2 Commits

Author SHA1 Message Date
6020386bbe examples: fix duplication (#2813) 2022-01-23 00:27:44 +08:00
f7c2289db1 Update CHANGELOG.md 2022-01-23 00:24:05 +08:00
2 changed files with 1 additions and 3 deletions

View File

@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file. See [standa
### feat
* add support for <video> elements (#2788) ([181d1b1](https://github.com/niklasvh/html2canvas/commit/181d1b1103910d6e1b5277d5c007fc5e3006c6bf)), closes [#2788](https://github.com/niklasvh/html2canvas/issues/2788)
* add support for `<video>` elements (#2788) ([181d1b1](https://github.com/niklasvh/html2canvas/commit/181d1b1103910d6e1b5277d5c007fc5e3006c6bf)), closes [#2788](https://github.com/niklasvh/html2canvas/issues/2788)
### fix

View File

@ -29,8 +29,6 @@
var canvas = document.querySelector("canvas");
var ctx = canvas.getContext("2d");
var ctx = canvas.getContext('2d');
ctx.beginPath();
ctx.arc(75,75,50,0,Math.PI*2,true); // Outer circle
ctx.moveTo(110,75);