mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
10 lines
265 B
Text
10 lines
265 B
Text
<% if current_user %>
|
|
<div id="progressbar" style="width:30%;"><span id="tnl">(Level 1) <%= score %>/100</span></div>
|
|
<script>
|
|
$(function() {
|
|
$( "#progressbar" ).progressbar({
|
|
value: <%= score %>
|
|
});
|
|
});
|
|
</script>
|
|
<% end %>
|