├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── bench.html ├── bower.json ├── component.json ├── form.html ├── index.html ├── package.json ├── src └── ie8.js ├── template ├── copyright ├── license.after ├── license.before ├── md.after ├── md.before ├── var.after └── var.before └── test ├── .test.js └── ie8.js /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw? 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/README.md -------------------------------------------------------------------------------- /bench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/bench.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/bower.json -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/component.json -------------------------------------------------------------------------------- /form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/form.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/package.json -------------------------------------------------------------------------------- /src/ie8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/src/ie8.js -------------------------------------------------------------------------------- /template/copyright: -------------------------------------------------------------------------------- 1 | /*! (C) WebReflection Mit Style License */ 2 | -------------------------------------------------------------------------------- /template/license.after: -------------------------------------------------------------------------------- 1 | 2 | */ 3 | -------------------------------------------------------------------------------- /template/license.before: -------------------------------------------------------------------------------- 1 | /*! 2 | -------------------------------------------------------------------------------- /template/md.after: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /template/md.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/template/md.before -------------------------------------------------------------------------------- /template/var.after: -------------------------------------------------------------------------------- 1 | }(this.window || global)); -------------------------------------------------------------------------------- /template/var.before: -------------------------------------------------------------------------------- 1 | (function(window){ -------------------------------------------------------------------------------- /test/.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/test/.test.js -------------------------------------------------------------------------------- /test/ie8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/ie8/HEAD/test/ie8.js --------------------------------------------------------------------------------