├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── salvattore.js └── salvattore.min.js ├── examples ├── README.md ├── normalize.css ├── salvattore.css ├── salvattore.html └── styles.css ├── gulpfile.js ├── karma.conf.js ├── package.json ├── src ├── polyfills │ ├── customEvent.js │ ├── matchMedia.addListener.js │ ├── matchMedia.js │ └── requestAnimationFrame.js └── salvattore.js └── tests ├── resources ├── expect.js-0.3.1.js ├── mocha-2.2.5.css └── mocha-2.2.5.js ├── salvattore.test.js ├── test1.html ├── test2.html └── test3.html /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | npm-debug.log 15 | node_modules 16 | .DS_Store -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.9 4 | 5 | - Fix IE9 throwing error `not implemented` when using `@import` rule with an url [#159](https://github.com/rnmp/salvattore/issues/159) 6 | 7 | ## 1.0.8 - 2015-06-08 8 | 9 | Changes: 10 | - Convert all exposed to camelCase notation, underscore notation is now deprecated 11 | - Expose `recreateColumns` function to allow column recreation (from pull request [#78](https://github.com/rnmp/salvattore/pull/78) by [@skakri](https://github.com/skakri)) 12 | - Expose `rescanMediaQueries` function to check all styles for new definitions 13 | 14 | Fixed bugs: 15 | - Fix IE 11 DocumentFragment bug (from pull request [#72](https://github.com/rnmp/salvattore/pull/72) by [@rnzo](https://github.com/rnzo)) 16 | - Fix reading of empty css files [#84](https://github.com/rnmp/salvattore/issues/84) 17 | (from pull request [#85](https://github.com/rnmp/salvattore/pull/85) by [@francescostella](https://github.com/francescostella)) 18 | - `@import` statements no longer lead to errors [#108](https://github.com/rnmp/salvattore/issues/108) 19 | (from pull request [#118](https://github.com/rnmp/salvattore/pull/118) by [@hbi99](https://github.com/hbi99)) 20 | - ` 8 | 14 |