├── .gitignore ├── BSD-LICENSE ├── README.md ├── Rakefile ├── dist ├── obscura.js └── release │ └── obscura.min.js ├── examples ├── css │ └── examples.css ├── fonts │ ├── museo300-regular-webfont.eot │ ├── museo300-regular-webfont.svg │ ├── museo300-regular-webfont.ttf │ ├── museo300-regular-webfont.woff │ ├── museo500-regular-webfont.eot │ ├── museo500-regular-webfont.svg │ ├── museo500-regular-webfont.ttf │ ├── museo500-regular-webfont.woff │ ├── museo700-regular-webfont.eot │ ├── museo700-regular-webfont.svg │ ├── museo700-regular-webfont.ttf │ ├── museo700-regular-webfont.woff │ └── stylesheet.css ├── img │ ├── Tycho_Celchu_helmet.jpg │ └── Wedge_Antilles_helmet.jpg ├── index.html └── js │ └── obscura.min.js ├── src ├── coffee │ └── obscura.coffee └── obscura.js └── test └── functional ├── img ├── Tycho_Celchu_helmet.jpg └── Wedge_Antilles_helmet.jpg └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/.gitignore -------------------------------------------------------------------------------- /BSD-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/BSD-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/Rakefile -------------------------------------------------------------------------------- /dist/obscura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/dist/obscura.js -------------------------------------------------------------------------------- /dist/release/obscura.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/dist/release/obscura.min.js -------------------------------------------------------------------------------- /examples/css/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/css/examples.css -------------------------------------------------------------------------------- /examples/fonts/museo300-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo300-regular-webfont.eot -------------------------------------------------------------------------------- /examples/fonts/museo300-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo300-regular-webfont.svg -------------------------------------------------------------------------------- /examples/fonts/museo300-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo300-regular-webfont.ttf -------------------------------------------------------------------------------- /examples/fonts/museo300-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo300-regular-webfont.woff -------------------------------------------------------------------------------- /examples/fonts/museo500-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo500-regular-webfont.eot -------------------------------------------------------------------------------- /examples/fonts/museo500-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo500-regular-webfont.svg -------------------------------------------------------------------------------- /examples/fonts/museo500-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo500-regular-webfont.ttf -------------------------------------------------------------------------------- /examples/fonts/museo500-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo500-regular-webfont.woff -------------------------------------------------------------------------------- /examples/fonts/museo700-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo700-regular-webfont.eot -------------------------------------------------------------------------------- /examples/fonts/museo700-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo700-regular-webfont.svg -------------------------------------------------------------------------------- /examples/fonts/museo700-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo700-regular-webfont.ttf -------------------------------------------------------------------------------- /examples/fonts/museo700-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/museo700-regular-webfont.woff -------------------------------------------------------------------------------- /examples/fonts/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/fonts/stylesheet.css -------------------------------------------------------------------------------- /examples/img/Tycho_Celchu_helmet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/img/Tycho_Celchu_helmet.jpg -------------------------------------------------------------------------------- /examples/img/Wedge_Antilles_helmet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/img/Wedge_Antilles_helmet.jpg -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/js/obscura.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/examples/js/obscura.min.js -------------------------------------------------------------------------------- /src/coffee/obscura.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/src/coffee/obscura.coffee -------------------------------------------------------------------------------- /src/obscura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/src/obscura.js -------------------------------------------------------------------------------- /test/functional/img/Tycho_Celchu_helmet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/test/functional/img/Tycho_Celchu_helmet.jpg -------------------------------------------------------------------------------- /test/functional/img/Wedge_Antilles_helmet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/test/functional/img/Wedge_Antilles_helmet.jpg -------------------------------------------------------------------------------- /test/functional/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OiNutter/Obscura/HEAD/test/functional/index.html --------------------------------------------------------------------------------