├── .gitignore ├── HISTORY.md ├── LICENSE.md ├── README.md ├── demo.html ├── docs └── images │ └── details-polyfill.gif ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/demo.html -------------------------------------------------------------------------------- /docs/images/details-polyfill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/docs/images/details-polyfill.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/details-polyfill/HEAD/yarn.lock --------------------------------------------------------------------------------