Add tooltips

This commit is contained in:
DC
2016-03-21 16:08:47 -07:00
parent 1f888465ed
commit 78f1d4c8eb
5 changed files with 53 additions and 10 deletions

View File

@@ -11,13 +11,13 @@ function Header (state, dispatch) {
<div class='nav left'>
<i.icon.back
class=${state.location.hasBack() ? '' : 'disabled'}
title='back'
title='Back'
onclick=${() => dispatch('back')}>
chevron_left
</i>
<i.icon.forward
class=${state.location.hasForward() ? '' : 'disabled'}
title='forward'
title='Forward'
onclick=${() => dispatch('forward')}>
chevron_right
</i>
@@ -39,7 +39,7 @@ function Header (state, dispatch) {
return hx`
<i
class='icon add'
title='add torrent'
title='Add torrent'
onclick=${() => dispatch('showOpenTorrentFile')}>
add
</i>