├── .gitignore ├── bin ├── LayerExporter.zxp └── archives │ ├── LayerExporter-2.0.1-dev.zxp │ └── LayerExporter-2.1.0-dev.zxp ├── com.dehats.layerexporter ├── .debug ├── CSXS │ └── manifest.xml ├── css │ ├── styles.css │ ├── theme.css │ └── topcoat-desktop-dark.min.css ├── img │ ├── cb-checked.png │ └── cb.png ├── index.html ├── js │ ├── libs │ │ ├── CSInterface-4.0.0.js │ │ └── jquery-2.0.2.min.js │ ├── main.js │ └── themeManager.js └── jsx │ ├── ExportLayersAndData.jsxbin │ ├── Renamer.jsx │ ├── distribSelectionToLayers.jsx │ ├── hostscript.jsx │ └── newLayerFromSel.jsx ├── pics ├── banner.png ├── exchange-workflow.png ├── html.png ├── json.png ├── layers-panel.png ├── p1.png ├── p2.png ├── p3.png └── web.png ├── readme.md ├── samples ├── complex-html-export │ ├── LayerExporterFlagv3.ai │ ├── images │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── c5.png │ │ ├── data.json │ │ ├── stroke1.svg │ │ ├── stroke2.svg │ │ ├── stroke3.svg │ │ └── texts.png │ ├── index.html │ └── styles.css └── landscape-for-LayerExporter-v1 │ ├── animation.html │ ├── basic.html │ ├── css │ ├── animations.css │ ├── base.css │ ├── dragndrop.css │ └── normalize.css │ ├── dragndrop.html │ ├── img │ ├── Title.png │ ├── ballon.svg │ ├── bgd.jpg │ ├── boat.svg │ ├── data.json │ ├── descrip-txt.svg │ ├── descrip.svg │ ├── ground-1.svg │ ├── ground-2.svg │ ├── mountains.svg │ ├── sea.svg │ └── sun.svg │ └── js │ ├── animation.js │ ├── composer.js │ ├── dragndrop.js │ └── libs │ ├── hammer.min.js │ └── jquery-1.8.3.min.js └── utils ├── empty_animate_project ├── edge_includes │ ├── edge.1.5.0.min.js │ └── jquery-1.7.1.min.js ├── index.an ├── index.html ├── index_edge.js ├── index_edgeActions.js └── index_edgePreload.js └── html-reader ├── css └── main.css ├── img ├── Aile-D.svg ├── Aile-G.svg ├── Corps.jpg ├── Desc.svg ├── OeilD.png ├── OeilG.svg ├── Title.svg └── data.json ├── index.html └── js ├── composer.js └── libs └── jquery-1.8.3.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /bin/LayerExporter.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/bin/LayerExporter.zxp -------------------------------------------------------------------------------- /bin/archives/LayerExporter-2.0.1-dev.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/bin/archives/LayerExporter-2.0.1-dev.zxp -------------------------------------------------------------------------------- /bin/archives/LayerExporter-2.1.0-dev.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/bin/archives/LayerExporter-2.1.0-dev.zxp -------------------------------------------------------------------------------- /com.dehats.layerexporter/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/.debug -------------------------------------------------------------------------------- /com.dehats.layerexporter/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/CSXS/manifest.xml -------------------------------------------------------------------------------- /com.dehats.layerexporter/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/css/styles.css -------------------------------------------------------------------------------- /com.dehats.layerexporter/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/css/theme.css -------------------------------------------------------------------------------- /com.dehats.layerexporter/css/topcoat-desktop-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/css/topcoat-desktop-dark.min.css -------------------------------------------------------------------------------- /com.dehats.layerexporter/img/cb-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/img/cb-checked.png -------------------------------------------------------------------------------- /com.dehats.layerexporter/img/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/img/cb.png -------------------------------------------------------------------------------- /com.dehats.layerexporter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/index.html -------------------------------------------------------------------------------- /com.dehats.layerexporter/js/libs/CSInterface-4.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/js/libs/CSInterface-4.0.0.js -------------------------------------------------------------------------------- /com.dehats.layerexporter/js/libs/jquery-2.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/js/libs/jquery-2.0.2.min.js -------------------------------------------------------------------------------- /com.dehats.layerexporter/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/js/main.js -------------------------------------------------------------------------------- /com.dehats.layerexporter/js/themeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/js/themeManager.js -------------------------------------------------------------------------------- /com.dehats.layerexporter/jsx/ExportLayersAndData.jsxbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/jsx/ExportLayersAndData.jsxbin -------------------------------------------------------------------------------- /com.dehats.layerexporter/jsx/Renamer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/jsx/Renamer.jsx -------------------------------------------------------------------------------- /com.dehats.layerexporter/jsx/distribSelectionToLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/jsx/distribSelectionToLayers.jsx -------------------------------------------------------------------------------- /com.dehats.layerexporter/jsx/hostscript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/jsx/hostscript.jsx -------------------------------------------------------------------------------- /com.dehats.layerexporter/jsx/newLayerFromSel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/com.dehats.layerexporter/jsx/newLayerFromSel.jsx -------------------------------------------------------------------------------- /pics/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/banner.png -------------------------------------------------------------------------------- /pics/exchange-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/exchange-workflow.png -------------------------------------------------------------------------------- /pics/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/html.png -------------------------------------------------------------------------------- /pics/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/json.png -------------------------------------------------------------------------------- /pics/layers-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/layers-panel.png -------------------------------------------------------------------------------- /pics/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/p1.png -------------------------------------------------------------------------------- /pics/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/p2.png -------------------------------------------------------------------------------- /pics/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/p3.png -------------------------------------------------------------------------------- /pics/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/pics/web.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/readme.md -------------------------------------------------------------------------------- /samples/complex-html-export/LayerExporterFlagv3.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/LayerExporterFlagv3.ai -------------------------------------------------------------------------------- /samples/complex-html-export/images/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/c1.png -------------------------------------------------------------------------------- /samples/complex-html-export/images/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/c2.png -------------------------------------------------------------------------------- /samples/complex-html-export/images/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/c3.png -------------------------------------------------------------------------------- /samples/complex-html-export/images/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/c4.png -------------------------------------------------------------------------------- /samples/complex-html-export/images/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/c5.png -------------------------------------------------------------------------------- /samples/complex-html-export/images/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/data.json -------------------------------------------------------------------------------- /samples/complex-html-export/images/stroke1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/stroke1.svg -------------------------------------------------------------------------------- /samples/complex-html-export/images/stroke2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/stroke2.svg -------------------------------------------------------------------------------- /samples/complex-html-export/images/stroke3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/stroke3.svg -------------------------------------------------------------------------------- /samples/complex-html-export/images/texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/images/texts.png -------------------------------------------------------------------------------- /samples/complex-html-export/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/index.html -------------------------------------------------------------------------------- /samples/complex-html-export/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/complex-html-export/styles.css -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/animation.html -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/basic.html -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/css/animations.css -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/css/base.css -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/css/dragndrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/css/dragndrop.css -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/css/normalize.css -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/dragndrop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/dragndrop.html -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/Title.png -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/ballon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/ballon.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/bgd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/bgd.jpg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/boat.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/data.json -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/descrip-txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/descrip-txt.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/descrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/descrip.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/ground-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/ground-1.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/ground-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/ground-2.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/mountains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/mountains.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/sea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/sea.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/img/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/img/sun.svg -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/js/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/js/animation.js -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/js/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/js/composer.js -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/js/dragndrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/js/dragndrop.js -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/js/libs/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/js/libs/hammer.min.js -------------------------------------------------------------------------------- /samples/landscape-for-LayerExporter-v1/js/libs/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/samples/landscape-for-LayerExporter-v1/js/libs/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /utils/empty_animate_project/edge_includes/edge.1.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/edge_includes/edge.1.5.0.min.js -------------------------------------------------------------------------------- /utils/empty_animate_project/edge_includes/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/edge_includes/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /utils/empty_animate_project/index.an: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/index.an -------------------------------------------------------------------------------- /utils/empty_animate_project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/index.html -------------------------------------------------------------------------------- /utils/empty_animate_project/index_edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/index_edge.js -------------------------------------------------------------------------------- /utils/empty_animate_project/index_edgeActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/index_edgeActions.js -------------------------------------------------------------------------------- /utils/empty_animate_project/index_edgePreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/empty_animate_project/index_edgePreload.js -------------------------------------------------------------------------------- /utils/html-reader/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/css/main.css -------------------------------------------------------------------------------- /utils/html-reader/img/Aile-D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/Aile-D.svg -------------------------------------------------------------------------------- /utils/html-reader/img/Aile-G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/Aile-G.svg -------------------------------------------------------------------------------- /utils/html-reader/img/Corps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/Corps.jpg -------------------------------------------------------------------------------- /utils/html-reader/img/Desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/Desc.svg -------------------------------------------------------------------------------- /utils/html-reader/img/OeilD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/OeilD.png -------------------------------------------------------------------------------- /utils/html-reader/img/OeilG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/OeilG.svg -------------------------------------------------------------------------------- /utils/html-reader/img/Title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/Title.svg -------------------------------------------------------------------------------- /utils/html-reader/img/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/img/data.json -------------------------------------------------------------------------------- /utils/html-reader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/index.html -------------------------------------------------------------------------------- /utils/html-reader/js/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/js/composer.js -------------------------------------------------------------------------------- /utils/html-reader/js/libs/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/Illustrator-Layer-Exporter/HEAD/utils/html-reader/js/libs/jquery-1.8.3.min.js --------------------------------------------------------------------------------