Gitter migration: Point people to app.gitter.im (rollout pt. 1)
[gitter.git] / public / js / utils / is-mobile-embedded.js
blob156e47ce76a8fa0fc395b086e0d80c70d6454330
1 'use strict';
3 let bodyHasMobileEmbeddedClass;
5 /**
6  *  Returns true if the page is embedded in native mobile app.
7  * (.mobile-embedded CSS class on body was added there during
8  * generating assets in build-scripts/render-embedded-chat.js)
9  */
10 module.exports = () => {
11   if (bodyHasMobileEmbeddedClass === undefined) {
12     bodyHasMobileEmbeddedClass = document.body.classList.contains('mobile-embedded');
13   }
15   return bodyHasMobileEmbeddedClass;