├── .bowerrc ├── fontmin.icns ├── fontmin.ico ├── fontmin.png ├── .gitignore ├── .editorconfig ├── bower.json ├── main.html ├── main.js ├── package.json ├── README.md ├── LICENSE └── components ├── fm-file-drop.html ├── fm-glyphs-input.html ├── fm-preview.html └── fm-main.html /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "dep" 3 | } 4 | -------------------------------------------------------------------------------- /fontmin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/fontmin-app/HEAD/fontmin.icns -------------------------------------------------------------------------------- /fontmin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/fontmin-app/HEAD/fontmin.ico -------------------------------------------------------------------------------- /fontmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecomfe/fontmin-app/HEAD/fontmin.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dep/ 2 | node_modules/ 3 | dist/ 4 | build/ 5 | .DS_Store 6 | Thumbs.db 7 | npm-debug.log 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_size = 4 5 | indent_style = space 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.json] 12 | indent_size = 2 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fontmin-app", 3 | "private": true, 4 | "license": "MIT", 5 | "ignore": [ 6 | "**/.*", 7 | "node_modules", 8 | "dep", 9 | "test" 10 | ], 11 | "dependencies": { 12 | "normalize-css": "~3.0.3", 13 | "polymer": "Polymer/polymer#~0.8.0", 14 | "layout": "Polymer/layout" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |