mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
8 lines
189 B
Text
8 lines
189 B
Text
|
|
<div id="progressbar" style="width:30%;"><span id="tnl"><%= score %>/100</span></div>
|
||
|
|
<script>
|
||
|
|
$(function() {
|
||
|
|
$( "#progressbar" ).progressbar({
|
||
|
|
value: <%= score %>
|
||
|
|
});
|
||
|
|
});
|
||
|
|
</script>
|