├── .gitignore ├── DD_belatedPNG_0.0.8a.js ├── README.markdown └── example ├── icon-larger.png ├── icon-sprite.png ├── icon.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /DD_belatedPNG_0.0.8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus2/DD_belatedPNG/HEAD/DD_belatedPNG_0.0.8a.js -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus2/DD_belatedPNG/HEAD/README.markdown -------------------------------------------------------------------------------- /example/icon-larger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus2/DD_belatedPNG/HEAD/example/icon-larger.png -------------------------------------------------------------------------------- /example/icon-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus2/DD_belatedPNG/HEAD/example/icon-sprite.png -------------------------------------------------------------------------------- /example/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus2/DD_belatedPNG/HEAD/example/icon.png -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plus2/DD_belatedPNG/HEAD/example/index.html --------------------------------------------------------------------------------