diff options
| -rw-r--r-- | views.js | 8 | 
1 files changed, 8 insertions, 0 deletions
| @@ -48,8 +48,16 @@ function profilePage (src, keys) {      }    }, ['Identify ' + src.substring(0, 10) + '...']) +  var mentionsButton = h('button', { +    onclick: function () { +      location.href = '#?' + src +    } +  }, ['Mentions']) +    profile.appendChild(identifyButton) +  profile.appendChild(mentionsButton) +    localforage.getItem('subscriptions').then(function (subs) {      if (subs.includes(src)) {        profile.appendChild(h('button', { | 
