From 2dbf71fd84b6a0f79758213eb96c26516e854a55 Mon Sep 17 00:00:00 2001 From: Jordan Davis Date: Sat, 29 Aug 2015 00:37:29 -0700 Subject: [PATCH] cleanup --- components/ionBody/ionBody.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ionBody/ionBody.js b/components/ionBody/ionBody.js index 7a2a71c..cf78c2f 100644 --- a/components/ionBody/ionBody.js +++ b/components/ionBody/ionBody.js @@ -1,12 +1,12 @@ Platform = { isIOS: function () { return (!!navigator.userAgent.match(/iPad/i) || !!navigator.userAgent.match(/iPhone/i) || !!navigator.userAgent.match(/iPod/i)) - || Session.get('platformOverride') === 'iOS'; + || Session.get('platformOverride') === 'iOS'; }, isAndroid: function () { return navigator.userAgent.indexOf('Android') > 0 - || Session.get('platformOverride') === 'Android'; + || Session.get('platformOverride') === 'Android'; } };