diff --git a/browser/components/loop/standalone/content/css/webapp.css b/browser/components/loop/standalone/content/css/webapp.css index 2dca984c61f9..cec66f461ddb 100644 --- a/browser/components/loop/standalone/content/css/webapp.css +++ b/browser/components/loop/standalone/content/css/webapp.css @@ -195,6 +195,7 @@ html[dir="rtl"] .rooms-footer .footer-logo { background-color: #EBEBEB; border-color: #EBEBEB; color: #B2B0B3; + font-weight: normal; } /* Room wrapper layout */ diff --git a/browser/components/loop/standalone/content/js/standaloneRoomViews.js b/browser/components/loop/standalone/content/js/standaloneRoomViews.js index ca8bb31a6449..6723f6c5626f 100644 --- a/browser/components/loop/standalone/content/js/standaloneRoomViews.js +++ b/browser/components/loop/standalone/content/js/standaloneRoomViews.js @@ -680,11 +680,11 @@ loop.standaloneRoomViews = (function(mozL10n) { render: function() { // If we don't know yet, don't display anything. - if (this.state.firefoxHandlesRoom === undefined) { + if (this.state.userAgentHandlesRoom === undefined) { return null; } - if (this.state.firefoxHandlesRoom) { + if (this.state.userAgentHandlesRoom) { return ( React.createElement(StandaloneHandleUserAgentView, { dispatcher: this.props.dispatcher}) diff --git a/browser/components/loop/standalone/content/js/standaloneRoomViews.jsx b/browser/components/loop/standalone/content/js/standaloneRoomViews.jsx index 3d6478ae1c74..d08db3f4cc68 100644 --- a/browser/components/loop/standalone/content/js/standaloneRoomViews.jsx +++ b/browser/components/loop/standalone/content/js/standaloneRoomViews.jsx @@ -680,11 +680,11 @@ loop.standaloneRoomViews = (function(mozL10n) { render: function() { // If we don't know yet, don't display anything. - if (this.state.firefoxHandlesRoom === undefined) { + if (this.state.userAgentHandlesRoom === undefined) { return null; } - if (this.state.firefoxHandlesRoom) { + if (this.state.userAgentHandlesRoom) { return ( diff --git a/browser/components/loop/test/standalone/standaloneRoomViews_test.js b/browser/components/loop/test/standalone/standaloneRoomViews_test.js index d863a7adfd1a..7f7f78e8f3df 100644 --- a/browser/components/loop/test/standalone/standaloneRoomViews_test.js +++ b/browser/components/loop/test/standalone/standaloneRoomViews_test.js @@ -936,7 +936,7 @@ describe("loop.standaloneRoomViews", function() { it("should not display anything if it is not known if Firefox can handle the room", function() { activeRoomStore.setStoreState({ - firefoxHandlesRoom: undefined + userAgentHandlesRoom: undefined }); view = mountTestComponent(); @@ -946,7 +946,7 @@ describe("loop.standaloneRoomViews", function() { it("should render StandaloneHandleUserAgentView if Firefox can handle the room", function() { activeRoomStore.setStoreState({ - firefoxHandlesRoom: true + userAgentHandlesRoom: true }); view = mountTestComponent(); @@ -957,7 +957,7 @@ describe("loop.standaloneRoomViews", function() { it("should render StandaloneRoomView if Firefox cannot handle the room", function() { activeRoomStore.setStoreState({ - firefoxHandlesRoom: false + userAgentHandlesRoom: false }); view = mountTestComponent();