├── .gitignore ├── package.json ├── platforms.utils.ts ├── properties.utils.ts ├── readme.md ├── share-button ├── share-button.component.ts └── share-button.css ├── share-container ├── share-container.component.css ├── share-container.component.html └── share-container.component.ts └── share.module.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/package.json -------------------------------------------------------------------------------- /platforms.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/platforms.utils.ts -------------------------------------------------------------------------------- /properties.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/properties.utils.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/readme.md -------------------------------------------------------------------------------- /share-button/share-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/share-button/share-button.component.ts -------------------------------------------------------------------------------- /share-button/share-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/share-button/share-button.css -------------------------------------------------------------------------------- /share-container/share-container.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/share-container/share-container.component.css -------------------------------------------------------------------------------- /share-container/share-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/share-container/share-container.component.html -------------------------------------------------------------------------------- /share-container/share-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/share-container/share-container.component.ts -------------------------------------------------------------------------------- /share.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedvdb/ng2share/HEAD/share.module.ts --------------------------------------------------------------------------------