├── .gitignore ├── LICENSE ├── README.md ├── combined-node.woff2.base64 ├── combined.woff2 ├── combined.woff2.base64 ├── fontawesome ├── fa-brands-400.ttf ├── fa-brands-400.woff2 ├── fa-regular-400.ttf ├── fa-regular-400.woff2 ├── fa-solid-900.ttf ├── fa-solid-900.woff2 ├── fa-v4compatibility.ttf ├── fa-v4compatibility.woff2 └── merged.ttf ├── package.json ├── share-button.js ├── share.html ├── subset.mjs └── subset.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/README.md -------------------------------------------------------------------------------- /combined-node.woff2.base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/combined-node.woff2.base64 -------------------------------------------------------------------------------- /combined.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/combined.woff2 -------------------------------------------------------------------------------- /combined.woff2.base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/combined.woff2.base64 -------------------------------------------------------------------------------- /fontawesome/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-brands-400.ttf -------------------------------------------------------------------------------- /fontawesome/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-brands-400.woff2 -------------------------------------------------------------------------------- /fontawesome/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-regular-400.ttf -------------------------------------------------------------------------------- /fontawesome/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-regular-400.woff2 -------------------------------------------------------------------------------- /fontawesome/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-solid-900.ttf -------------------------------------------------------------------------------- /fontawesome/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-solid-900.woff2 -------------------------------------------------------------------------------- /fontawesome/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /fontawesome/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /fontawesome/merged.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/fontawesome/merged.ttf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/package.json -------------------------------------------------------------------------------- /share-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/share-button.js -------------------------------------------------------------------------------- /share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/share.html -------------------------------------------------------------------------------- /subset.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/subset.mjs -------------------------------------------------------------------------------- /subset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/share-button/HEAD/subset.sh --------------------------------------------------------------------------------