From f1283c3191345659b3d4cc442dc3063c116e8131 Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Tue, 3 Mar 2020 20:44:23 -0500 Subject: [PATCH] Adding new community link to footer --- js/component/card/footer.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/js/component/card/footer.js b/js/component/card/footer.js index 696b3ec..8993282 100644 --- a/js/component/card/footer.js +++ b/js/component/card/footer.js @@ -27,8 +27,9 @@ beestat.component.card.footer.prototype.decorate_contents_ = function(parent) { footer_links.appendChild( $.createElement('a') - .setAttribute('href', 'mailto:contact@beestat.io') - .innerHTML('Contact') + .setAttribute('href', 'https://community.beestat.io/') + .setAttribute('target', '_blank') + .innerHTML('Feedback') ); footer_links.appendChild($.createElement('span').innerHTML(' • ')); @@ -50,8 +51,8 @@ beestat.component.card.footer.prototype.decorate_contents_ = function(parent) { footer_links.appendChild( $.createElement('a') - .setAttribute('href', 'https://github.com/beestat/app/issues/') - .setAttribute('target', '_blank') - .innerHTML('Report Issue') + .setAttribute('href', 'mailto:contact@beestat.io') + .innerHTML('Contact') ); + };