├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gruntfile.js ├── package.json ├── src ├── SourceSansVariable-Roman.ttf ├── demo.html ├── demo.min.css └── textblock.js └── textblock.min.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/README.md -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/package.json -------------------------------------------------------------------------------- /src/SourceSansVariable-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/src/SourceSansVariable-Roman.ttf -------------------------------------------------------------------------------- /src/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/src/demo.html -------------------------------------------------------------------------------- /src/demo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/src/demo.min.css -------------------------------------------------------------------------------- /src/textblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/src/textblock.js -------------------------------------------------------------------------------- /textblock.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyphic-co/textblock/HEAD/textblock.min.js --------------------------------------------------------------------------------