Use toBlobHD in demo script

This commit is contained in:
Eli Grey
2016-05-26 08:19:04 -04:00
parent 242c1dccc1
commit 597b6cd020
+3 -3
View File
@@ -1,8 +1,8 @@
/*! FileSaver.js demo script
* 2012-01-23
* 2016-05-26
*
* By Eli Grey, http://eligrey.com
* License: X11/MIT
* License: MIT
* See LICENSE.md
*/
@@ -165,7 +165,7 @@ canvas.addEventListener("mouseout", stop_drawing, false);
canvas_options_form.addEventListener("submit", function(event) {
event.preventDefault();
canvas.toBlob(function(blob) {
canvas.toBlobHD(function(blob) {
saveAs(
blob
, (canvas_filename.value || canvas_filename.placeholder) + ".png"