From b2aeedd34ab656daebe89360c1fe4e4aac771c52 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Fri, 12 Mar 2021 20:09:55 +0100 Subject: [PATCH] Move images folder into modules folder All resources needed by client should in one folder Change-Id: Ib9f6ea7bb59f2b5b8115c381290032170d482a98 --- extension.json | 6 +++--- {images => modules/images}/gotoLine.svg | 0 {images => modules/images}/pilcrow.svg | 0 {images => modules/images}/wrapping.svg | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {images => modules/images}/gotoLine.svg (100%) rename {images => modules/images}/pilcrow.svg (100%) rename {images => modules/images}/wrapping.svg (100%) diff --git a/extension.json b/extension.json index 54b70df9..db5e34ae 100644 --- a/extension.json +++ b/extension.json @@ -80,14 +80,14 @@ }, "images": { "gotoLine": { - "file": "../images/gotoLine.svg" + "file": "images/gotoLine.svg" }, "pilcrow": { - "file": "../images/pilcrow.svg", + "file": "images/pilcrow.svg", "variants": [ "progressive" ] }, "wrapping": { - "file": "../images/wrapping.svg", + "file": "images/wrapping.svg", "variants": [ "progressive" ] } } diff --git a/images/gotoLine.svg b/modules/images/gotoLine.svg similarity index 100% rename from images/gotoLine.svg rename to modules/images/gotoLine.svg diff --git a/images/pilcrow.svg b/modules/images/pilcrow.svg similarity index 100% rename from images/pilcrow.svg rename to modules/images/pilcrow.svg diff --git a/images/wrapping.svg b/modules/images/wrapping.svg similarity index 100% rename from images/wrapping.svg rename to modules/images/wrapping.svg