From 432abc7c1bb2f1ee8d78087921c39c0f592eb3bd Mon Sep 17 00:00:00 2001 From: Jimmy Jia Date: Fri, 15 Jan 2016 16:48:46 -0500 Subject: [PATCH] Remove no-longer-needed CriOS hack --- modules/DOMUtils.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/DOMUtils.js b/modules/DOMUtils.js index 318a2935d..b354a6700 100644 --- a/modules/DOMUtils.js +++ b/modules/DOMUtils.js @@ -54,11 +54,6 @@ export function supportsHistory() { ua.indexOf('Windows Phone') === -1) { return false } - // FIXME: Work around our browser history not working correctly on Chrome - // iOS: https://github.com/rackt/react-router/issues/2565 - if (ua.indexOf('CriOS') !== -1) { - return false - } return window.history && 'pushState' in window.history }