Skip to content

Commit

Permalink
Added back tooltips. Fixes #220.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Mulholland committed Mar 27, 2018
1 parent b6fabb4 commit 4e4244d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</transition>
<div v-show="sideNavPosition === 'right'" id="sidenav-footer" class="panel-footer row">
<a v-if="isLeftArrowEnabled" href="#" v-tooltip.left="tooltip('tooltip-previous')" class="left" @click.prevent="sideNavLeft()"><span class="btn fa fa-chevron-left fa-2x" /></a>
<component v-if="leftArrow" is="tooltipPrevious" />
<component v-if="isLeftArrowEnabled" is="tooltipPrevious" />
<a v-if="isRightArrowEnabled" href="#" v-tooltip.left="tooltip('tooltip-next')" class="right" @click.prevent="sideNavRight()"><span class="btn fa fa-chevron-right fa-2x" /></a>
<component v-if="isRightArrowEnabled" is="tooltipNext" />
</div>
Expand Down

0 comments on commit 4e4244d

Please sign in to comment.