-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compose app tiles from a predetermined list of app Client ID's #7
Conversation
js/index.js
Outdated
@@ -45,13 +27,13 @@ async function makeAppTile(app) { | |||
$div.setAttribute('style', 'width: 13rem'); | |||
|
|||
const $link = document.createElement('a'); | |||
$link.setAttribute('href', app.link); | |||
$link.setAttribute('href', app.uri); | |||
$link.setAttribute('target', '_blank'); | |||
|
|||
const $img = document.createElement('img'); | |||
$img.setAttribute('class', 'card-img-top p-5'); | |||
$img.setAttribute('style', 'cursor: pointer'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be in a separate stylesheet file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved all the loose styles to a stylesheet in 52ff573
js/apps.js
Outdated
@@ -0,0 +1,41 @@ | |||
|
|||
// function that will query the necessary data from a Solid app using their ClientID's and the Comunica SPARQL query |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation should like
/**
* Blend two colors together.
* @param {string} color1 - The first color, in hexadecimal format.
* @param {string} color2 - The second color, in hexadecimal format.
* @return {string} The blended color.
*/
Webstorm will add placeholder if you type /**
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Documentation was updated in 0a39c94
Fixes #2 |
No description provided.