mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
Merge pull request #2106 from vikhyat/firefox-paste-image
Set canvas height and width for Firefox image copy-paste
This commit is contained in:
commit
ad45fdaed7
@ -385,8 +385,10 @@ Discourse.ComposerView = Discourse.View.extend(Ember.Evented, {
|
||||
var image = new Image();
|
||||
image.onload = function() {
|
||||
// Create a new canvas.
|
||||
var canvas = document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas'),
|
||||
ctx = canvas.getContext('2d');
|
||||
var canvas = document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas');
|
||||
canvas.height = image.height;
|
||||
canvas.width = image.width;
|
||||
var ctx = canvas.getContext('2d');
|
||||
ctx.drawImage(image, 0, 0);
|
||||
|
||||
canvas.toBlob(function(blob) {
|
||||
|
Loading…
Reference in New Issue
Block a user