From 0c0d05e8f2163336dc0306f15f5a942014a13177 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Wed, 8 May 2019 07:19:23 +0200 Subject: [PATCH] Revert "FIX: simpler w function check (#7496)" This reverts commit 25703117188747e4576350961b83247d1a04c1ef. --- vendor/assets/javascripts/i18n-patches.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/assets/javascripts/i18n-patches.js b/vendor/assets/javascripts/i18n-patches.js index 90d8496c37b..61c0a526e9d 100644 --- a/vendor/assets/javascripts/i18n-patches.js +++ b/vendor/assets/javascripts/i18n-patches.js @@ -13,7 +13,7 @@ return oldI18ntoHumanSize.apply(this, [number, options]); }; - if ("w" in String.prototype) { + if (Ember.typeOf(String.prototype.w) === "function") { String.prototype.i18n = function(options) { return I18n.t(String(this), options); };