From d5dfbff3c179933694375d2255f577affba30912 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 24 Feb 2017 11:25:36 +0900 Subject: [PATCH] [Client] Fix bugh --- src/web/app/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/app/boot.js b/src/web/app/boot.js index aed21b086..0b963c40c 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -39,7 +39,7 @@ if (HTMLCollection.prototype.forEach === undefined) { if (FileList.prototype.forEach === undefined) { FileList.prototype.forEach = Array.prototype.forEach; } -if (DataTransferItemList && DataTransferItemList.prototype.forEach === undefined) { +if (window.DataTransferItemList && DataTransferItemList.prototype.forEach === undefined) { DataTransferItemList.prototype.forEach = Array.prototype.forEach; }