From 24faa16b6adf163f7ef1c03cc769e3f85ae72027 Mon Sep 17 00:00:00 2001 From: Marie Malarme Date: Thu, 4 Mar 2021 20:11:36 +0000 Subject: [PATCH] gossip-grid: change files naming --- dom/gossip-grid_test.js | 2 +- subjects/gossip-grid/README.md | 8 ++++---- subjects/gossip-grid/{data.js => gossip-grid.data.js} | 0 subjects/gossip-grid/{index.html => gossip-grid.html} | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename subjects/gossip-grid/{data.js => gossip-grid.data.js} (100%) rename subjects/gossip-grid/{index.html => gossip-grid.html} (100%) diff --git a/dom/gossip-grid_test.js b/dom/gossip-grid_test.js index e6cbb420..5d6639c1 100644 --- a/dom/gossip-grid_test.js +++ b/dom/gossip-grid_test.js @@ -1,4 +1,4 @@ -import { gossips } from './subjects/gossip-grid/data.js' +import { gossips } from './subjects/gossip-grid/gossip-grid.data.js' export const tests = [] diff --git a/subjects/gossip-grid/README.md b/subjects/gossip-grid/README.md index 55f23dac..7d7c4530 100644 --- a/subjects/gossip-grid/README.md +++ b/subjects/gossip-grid/README.md @@ -22,16 +22,16 @@ Create 3 `type="range"` inputs with the class `range`, all wrapped in a `div` wi - [`
`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Form) - [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input): [`text`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/text), [`range`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range) -### Provided files +### Files -You have at your disposal the following files that you can download to test locally: +You only need to create & submit the JS file `gossip-grid.js` ; we're providing you the following files to download (click right and save link) & test locally: -- the HTML file [index.html](/public/subjects/gossip-grid/index.html) to open in the browser, which includes: +- the HTML file [gossip-grid.html](/public/subjects/gossip-grid/gossip-grid.html) to open in the browser, which includes: - the JS script which will allow to run your code - some CSS pre-styled classes: feel free to use those as they are, or modify them -- the data file [data.js](/public/subjects/gossip-grid/data.js) from which you can import `gossips` +- the data file [gossip-grid.data.js](/public/subjects/gossip-grid/gossip-grid.data.js) from which you can import `gossips` ### Expected result diff --git a/subjects/gossip-grid/data.js b/subjects/gossip-grid/gossip-grid.data.js similarity index 100% rename from subjects/gossip-grid/data.js rename to subjects/gossip-grid/gossip-grid.data.js diff --git a/subjects/gossip-grid/index.html b/subjects/gossip-grid/gossip-grid.html similarity index 100% rename from subjects/gossip-grid/index.html rename to subjects/gossip-grid/gossip-grid.html