ember-display-in-browser

ยท 3 min read

Inspired by react-render-in-browser, I put together an addon for EmberJS to display content based on the user's browser.

Head out to the demo page to try it out and here is the repo, if you want to see the code or file an issue :)

Why? ๐Ÿค”

Say you are developing an application that makes use of features that are not available in IE. You can make use of this addon to display a message asking the user to use a browser other than IE.

This is a bad idea! ๐Ÿ˜ 

This addon has some valid use cases(like I explained in the why section). However, you should prefer to make use of feature checks instead of relying on the User Agent.

Even though this addon lets you specify several browsers alone, please do not develop an app that supports Chrome(or Safari) alone. Compatibility matters.

Installation ๐Ÿ”ง

ember install ember-display-in-browser

Usage ๐Ÿ’ป

  • To display only in one or a set of browsers,
  {{!-- arrayOfBrowsers = ["Chrome", "firefox"] --}}

  {{#display-in-browser only=arrayOfBrowsers}}
    <p>This will be visible only in Chrome and Firefox</p>
  {{/display-in-browser}}

  {{#display-in-browser only="ie"}}
    <p>This will be visible only in Internet Explorer</p>
  {{/display-in-browser}}
  • To display in browsers other than one or more browsers,
  {{!-- arrayOfBrowsers = ["Chrome", "firefox"] --}}

  {{#display-in-browser except=arrayOfBrowsers}}
    <p>This will not be visible in Chrome and Firefox</p>
  {{/display-in-browser}}

  {{!-- arrayOfBrowsers = ["ie", "mobile"] --}}

  {{#display-in-browser except=arrayOfBrowsers}}
    <p>This will not be visible in IE and Mobile browsers</p>
  {{/display-in-browser}}

  {{#display-in-browser except="ie"}}
    <p>This will not be visible in IE.</p>
  {{/display-in-browser}}
  • To display in all browsers,
  {{#display-in-browser all=all}}
    <p>This will be visible in all browsers</p>
  {{/display-in-browser}}

  {{!-- You can also pass as a string, if needed --}}

  {{#display-in-browser all="true"}}
    <p>This will be visible in all browsers</p>
  {{/display-in-browser}}
  • To display in no browser,
  {{#display-in-browser none="true"}}
    <p>This will not be visible in any browser</p>
  {{/display-in-browser}}

Supported browsers - 'chrome', 'firefox', 'safari', 'opera', 'ie', 'edge', 'blink', 'mobile'(case-insensitive).


RSS FeedTwitterGitHubEmailToggle Dark Mode OnToggle Dark Mode OffLink