main.js mostly done,
started implmenting contentUtility.js added sort options to index.html
This commit is contained in:
11
src/main/resources/static/contentUtility.js
Normal file
11
src/main/resources/static/contentUtility.js
Normal file
@@ -0,0 +1,11 @@
|
||||
function fetchQuery(fetchString) {
|
||||
fetch(fetchString)
|
||||
.then(resp => resp.json())
|
||||
.then((data) => {
|
||||
parseContent(data.content);
|
||||
});
|
||||
}
|
||||
|
||||
function parseContent(content) {
|
||||
|
||||
}
|
Reference in New Issue
Block a user