Skip to content
Backports native emoji characters to browsers that don't support them by replacing the characters with fallback images.
JavaScript
Branch: master
Clone or download
Latest commit 229c212 Sep 12, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
examples Initial commit Jul 25, 2018
test add tests for non emoji supportting platforms Feb 25, 2019
.eslintrc.json turn off flow rule for prettier config Feb 25, 2019
.flowconfig Initial commit Jul 25, 2018
.gitignore Initial commit Jul 25, 2018
.travis.yml Initial commit Jul 25, 2018
LICENSE Initial commit Jul 25, 2018
README.md drop ie11 support Feb 25, 2019
emoji-detection.js
index.d.ts types(ts): fix window declaration type Sep 12, 2019
index.js flow strict Feb 25, 2019
index.js.flow add flow definition file for the element API May 13, 2019
package-lock.json 1.0.6 Sep 12, 2019
package.json 1.0.6 Sep 12, 2019
prettier.config.js Initial commit Jul 25, 2018
rollup.config.js use babel-preset-github Feb 25, 2019

README.md

<g-emoji> element

Backports native emoji characters to browsers that don't support them by replacing the characters with fallback images.

Installation

$ npm install @github/g-emoji-element

Usage

import '@github/g-emoji-element'
<g-emoji fallback-src="t-rex.png" alias="T-Rex">🦖</g-emoji>

If a browser supports emoji, nothing happens. If a browser does not support emoji, a fallback image tag is created:

<g-emoji fallback-src="t-rex.png" alias="T-Rex">
  <img class="emoji" alt="T-Rex" height="20" width="20" src="t-rex.png">
</g-emoji>

Browser support

Browsers without native custom element support require a polyfill.

  • Chrome
  • Firefox
  • Safari
  • Microsoft Edge

Development

npm install
npm test

License

Distributed under the MIT license. See LICENSE for details.

You can’t perform that action at this time.