summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-31 00:01:58 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-31 00:31:39 +0900
commitc518401f53320355e96e762f304ca33a423fe0bb (patch)
tree3b19b8a231826e7cf7544d41bfc2752ddec1a987 /src
parentMerge pull request #375 from syuilo/greenkeeper/cors-2.8.3 (diff)
downloadmisskey-c518401f53320355e96e762f304ca33a423fe0bb.tar.gz
misskey-c518401f53320355e96e762f304ca33a423fe0bb.tar.bz2
misskey-c518401f53320355e96e762f304ca33a423fe0bb.zip
Bye bye polyfill
Diffstat (limited to 'src')
-rw-r--r--src/web/app/boot.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/web/app/boot.js b/src/web/app/boot.js
index 8a9d623bde..cc92357579 100644
--- a/src/web/app/boot.js
+++ b/src/web/app/boot.js
@@ -26,9 +26,6 @@ riot.mixin({
CONFIG
});
-// ↓ iOS待ちPolyfill (SEE: http://caniuse.com/#feat=fetch)
-require('whatwg-fetch');
-
// ↓ NodeList、HTMLCollection、FileList、DataTransferItemListで forEach を使えるようにする
if (NodeList.prototype.forEach === undefined) {
NodeList.prototype.forEach = Array.prototype.forEach;