1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Adding new community link to footer

This commit is contained in:
Jon Ziebell 2020-03-03 20:44:23 -05:00
parent acf4db5768
commit f1283c3191

View File

@ -27,8 +27,9 @@ beestat.component.card.footer.prototype.decorate_contents_ = function(parent) {
footer_links.appendChild( footer_links.appendChild(
$.createElement('a') $.createElement('a')
.setAttribute('href', 'mailto:contact@beestat.io') .setAttribute('href', 'https://community.beestat.io/')
.innerHTML('Contact') .setAttribute('target', '_blank')
.innerHTML('Feedback')
); );
footer_links.appendChild($.createElement('span').innerHTML(' • ')); footer_links.appendChild($.createElement('span').innerHTML(' • '));
@ -50,8 +51,8 @@ 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', 'mailto:contact@beestat.io')
.setAttribute('target', '_blank') .innerHTML('Contact')
.innerHTML('Report Issue')
); );
}; };