Make percentage visible in progressbar image

Add title attribute for tooltip since % value isn't actually displayed otherwise.
This commit is contained in:
df 2020-05-11 11:40:14 +00:00
parent a3cb0a6693
commit dd3e4cb358
1 changed files with 1 additions and 1 deletions

View File

@ -3,8 +3,8 @@ if {![exists -proc progressbar]} {
proc progressbar {percent} {
set pos [expr 118 - $percent / 100.0 * 118]
return "<img src=/img/percentimage.png
title=\"$percent%\"
alt=\"$percent%\" class=progress
style=\"background-position: -${pos}px 0;\">"
}
}