@@ -73,6 +73,13 @@ overview,product {
|
|||||||
max-width: 40em;
|
max-width: 40em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
max-width: 40em;
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
owner {
|
owner {
|
||||||
display: block;
|
display: block;
|
||||||
width: 11em;
|
width: 11em;
|
||||||
|
|||||||
14
passmate.js
14
passmate.js
@@ -98,17 +98,11 @@ class PassMate {
|
|||||||
|
|
||||||
this.addElement('h2', overview, 'Questions? Suggestions?');
|
this.addElement('h2', overview, 'Questions? Suggestions?');
|
||||||
|
|
||||||
let contact = this.addElement('blurb', overview, 'Contact ian@passmate.io');
|
let contact = this.addElement('a', overview, 'Contact ian@passmate.io');
|
||||||
contact.style.cursor = 'pointer';
|
contact.href = 'mailto:ian@passmate.io';
|
||||||
contact.addEventListener('click', () => {
|
|
||||||
document.location = 'mailto:ian@passmate.io';
|
|
||||||
});
|
|
||||||
|
|
||||||
let github = this.addElement('blurb', overview, 'Source code & issue tracking at GitHub');
|
let github = this.addElement('a', overview, 'Source code & issue tracking at GitHub');
|
||||||
github.style.cursor = 'pointer';
|
github.href = 'https://github.com/flamingcowtv/passmate';
|
||||||
github.addEventListener('click', () => {
|
|
||||||
document.location = 'https://github.com/flamingcowtv/passmate';
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addProduct(container) {
|
addProduct(container) {
|
||||||
|
|||||||
Reference in New Issue
Block a user