1
0
mirror of https://github.com/beestat/app.git synced 2025-06-04 14:17:37 -04:00

Added help link to footer.

This commit is contained in:
Jon Ziebell 2020-01-15 18:15:38 -05:00
parent 138049bd84
commit 07ee100ba5

View File

@ -18,6 +18,13 @@ beestat.component.card.footer.prototype.decorate_contents_ = function(parent) {
var footer_links = $.createElement('div'); var footer_links = $.createElement('div');
footer.appendChild(footer_links); footer.appendChild(footer_links);
footer_links.appendChild(
$.createElement('a')
.setAttribute('href', 'https://doc.beestat.io/')
.innerHTML('Help')
);
footer_links.appendChild($.createElement('span').innerHTML(' • '));
footer_links.appendChild( footer_links.appendChild(
$.createElement('a') $.createElement('a')
.setAttribute('href', 'mailto:contact@beestat.io') .setAttribute('href', 'mailto:contact@beestat.io')
@ -27,7 +34,7 @@ beestat.component.card.footer.prototype.decorate_contents_ = function(parent) {
footer_links.appendChild( footer_links.appendChild(
$.createElement('a') $.createElement('a')
.setAttribute('href', '/privacy/') .setAttribute('href', 'https://beestat.io/privacy/')
.setAttribute('target', '_blank') .setAttribute('target', '_blank')
.innerHTML('Privacy') .innerHTML('Privacy')
); );
@ -43,7 +50,7 @@ beestat.component.card.footer.prototype.decorate_contents_ = function(parent) {
footer_links.appendChild( footer_links.appendChild(
$.createElement('a') $.createElement('a')
.setAttribute('href', 'https://github.com/beestat/app/issues') .setAttribute('href', 'https://github.com/beestat/app/issues/')
.setAttribute('target', '_blank') .setAttribute('target', '_blank')
.innerHTML('Report Issue') .innerHTML('Report Issue')
); );