├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── VS.md ├── bower.json ├── index.html ├── package.json ├── specs.md ├── src ├── properties-a.js ├── properties-z.js ├── properties.js ├── proxy-a.js ├── proxy-z.js ├── proxyHandler.js ├── restyle.js └── utils.js ├── template ├── amd.after ├── amd.before ├── copyright ├── license.after ├── license.before ├── md.after ├── md.before ├── node.after ├── node.before ├── var.after └── var.before └── test ├── .test.js └── restyle.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/README.md -------------------------------------------------------------------------------- /VS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/VS.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/package.json -------------------------------------------------------------------------------- /specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/specs.md -------------------------------------------------------------------------------- /src/properties-a.js: -------------------------------------------------------------------------------- 1 | restyle.properties = (function(){ 2 | -------------------------------------------------------------------------------- /src/properties-z.js: -------------------------------------------------------------------------------- 1 | 2 | return properties; 3 | 4 | }()); -------------------------------------------------------------------------------- /src/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/src/properties.js -------------------------------------------------------------------------------- /src/proxy-a.js: -------------------------------------------------------------------------------- 1 | restyle.proxy = (function(){ 2 | -------------------------------------------------------------------------------- /src/proxy-z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/src/proxy-z.js -------------------------------------------------------------------------------- /src/proxyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/src/proxyHandler.js -------------------------------------------------------------------------------- /src/restyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/src/restyle.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/src/utils.js -------------------------------------------------------------------------------- /template/amd.after: -------------------------------------------------------------------------------- 1 | ); -------------------------------------------------------------------------------- /template/amd.before: -------------------------------------------------------------------------------- 1 | define( -------------------------------------------------------------------------------- /template/copyright: -------------------------------------------------------------------------------- 1 | /*! (C) Andrea Giammarchi Mit Style License */ 2 | -------------------------------------------------------------------------------- /template/license.after: -------------------------------------------------------------------------------- 1 | 2 | */ 3 | -------------------------------------------------------------------------------- /template/license.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/template/license.before -------------------------------------------------------------------------------- /template/md.after: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /template/md.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/template/md.before -------------------------------------------------------------------------------- /template/node.after: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /template/node.before: -------------------------------------------------------------------------------- 1 | module.exports = -------------------------------------------------------------------------------- /template/var.after: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /template/var.before: -------------------------------------------------------------------------------- 1 | var restyle = -------------------------------------------------------------------------------- /test/.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/test/.test.js -------------------------------------------------------------------------------- /test/restyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/restyle/HEAD/test/restyle.js --------------------------------------------------------------------------------