Skip to content

Commit

Permalink
Remove old tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Feb 10, 2021
1 parent 0c24d10 commit dc72512
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/js/com/post.js
Expand Up @@ -141,11 +141,11 @@ export class Post extends LitElement {
var myVote = this.myVote
return html`
<span class="vote-ctrl">
<a class="up ${myVote === 1 ? 'pressed' : ''}" data-tooltip="Upvote" @click=${e => this.onToggleVote(e, 1)}>
<a class="up ${myVote === 1 ? 'pressed' : ''}" title="Upvote" @click=${e => this.onToggleVote(e, 1)}>
<span class="far fa-thumbs-up"></span>
<span class="count">${this.upvoteCount}</span>
</a>
<a class="down ${myVote === -1 ? 'pressed' : ''}" data-tooltip="Downvote" @click=${e => this.onToggleVote(e, -1)}>
<a class="down ${myVote === -1 ? 'pressed' : ''}" title="Downvote" @click=${e => this.onToggleVote(e, -1)}>
<span class="far fa-thumbs-down"></span>
<span class="count">${this.downvoteCount}</span>
</a>
Expand Down

1 comment on commit dc72512

@vercel
Copy link

@vercel vercel bot commented on dc72512 Feb 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.