allow file upload handler to create thumbnails for whiteboard

pull/1/head
ansuz 7 years ago
parent 6157c57a4b
commit ba97aa7ad2

@ -238,17 +238,9 @@ define([
APP.upload = function (title) { APP.upload = function (title) {
var canvas = $canvas[0]; var canvas = $canvas[0];
APP.canvas.deactivateAll().renderAll(); APP.canvas.deactivateAll().renderAll();
var finish = function (thumb) { canvas.toBlob(function (blob) {
canvas.toBlob(function (blob) { blob.name = title;
blob.name = title; APP.FM.handleFile(blob);
APP.FM.handleFile(blob, void 0, thumb);
});
};
Thumb.fromCanvas(canvas, function (e, blob) {
// carry on even if you can't get a thumbnail
if (e) { console.error(e); }
finish(blob);
}); });
}; };

Loading…
Cancel
Save