From 6535907095a81f6f636132ba51d2cf44ea9b99f0 Mon Sep 17 00:00:00 2001 From: Kieran Date: Thu, 9 Nov 2017 22:30:43 +0800 Subject: [PATCH] fix pasting links --- src/modules/dropzone.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/dropzone.html b/src/modules/dropzone.html index 6919f7d..176e0b6 100644 --- a/src/modules/dropzone.html +++ b/src/modules/dropzone.html @@ -148,7 +148,7 @@ if (url.indexOf('http://') === 0 || url.indexOf('https://') === 0) { this.self.addFileUpload(file); } - }); + }.bind({ self: this.self })); } } }