diff options
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/widgets/widgets/system_information.widget.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/usr/local/www/widgets/widgets/system_information.widget.php b/src/usr/local/www/widgets/widgets/system_information.widget.php index 28189e3..1face09 100644 --- a/src/usr/local/www/widgets/widgets/system_information.widget.php +++ b/src/usr/local/www/widgets/widgets/system_information.widget.php @@ -242,9 +242,12 @@ $filesystems = get_mounted_filesystems(); <tr> <th><?=gettext("Temperature");?></th> <td> - <?php $TempMeter = $temp = get_temp(); ?> - <div id="tempPB"></div> - <span id="tempmeter"><?= $temp."°C"; ?></span> + <?php $temp_deg_c = get_temp(); ?> + <div class="progress"> + <div id="tempPB" class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="<?=$temp_deg_c?>" aria-valuemin="0" aria-valuemax="100" style="width: <?=$temp_deg_c?>%"> + </div> + </div> + <span id="tempmeter"><?= $temp_deg_c . "°C"; ?></span> </td> </tr> <?php endif; ?> @@ -429,10 +432,10 @@ function updateCPU(x) { function updateTemp(x) { if ($("#tempmeter")) { - $("#tempmeter").html(x + '\u00B0' + 'C'); + $("#tempmeter").html(x + '°' + 'C'); } if ($('#tempPB')) { - $("#tempPB").progressbar( { value: parseInt(x) } ); + setProgress('tempPB', parseInt(x)); } } |