├── .gitignore ├── LICENSE ├── README.md ├── dist └── share-buttons.js ├── example ├── dynamic.html └── index.html ├── gulpfile.js ├── package.json └── src └── share-buttons.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/README.md -------------------------------------------------------------------------------- /dist/share-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/dist/share-buttons.js -------------------------------------------------------------------------------- /example/dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/example/dynamic.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/example/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/package.json -------------------------------------------------------------------------------- /src/share-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yauhenipakala/share-buttons/HEAD/src/share-buttons.js --------------------------------------------------------------------------------