SOLR-4261: Percentage Infos on Dashboard have a fixed width

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1429256 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Matheis 2013-01-05 10:53:39 +00:00
parent 449296da9d
commit 65a9cc3643
2 changed files with 4 additions and 4 deletions

View File

@ -220,6 +220,8 @@ Optimizations
* SOLR-4264: Missing Error-Screen on UI's Cloud-Page (steffkes)
* SOLR-4261: Percentage Infos on Dashboard have a fixed width (steffkes)
Bug Fixes
----------------------

View File

@ -36,15 +36,13 @@ var generate_bar = function( bar_container, bar_data, convert_label_values )
$( '.bar-max.val', bar_holder ).text( bar_data['max'] );
bar_level++;
var total_width = Math.round( ( bar_data['total'] * max_width ) / bar_data['max'] );
$( '.bar-total.bar', bar_holder ).width( Math.max( total_width, 1 ) );
$( '.bar-total.bar', bar_holder ).width( new String( (bar_data['total']/bar_data['max'])*100 ) + '%' );
$( '.bar-total.val', bar_holder ).text( bar_data['total'] );
if( bar_data['used'] )
{
bar_level++;
var used_width = Math.round( ( bar_data['used'] * max_width ) / bar_data['max'] );
$( '.bar-used.bar', bar_holder ).width( Math.min( used_width, total_width - 1 ) );
$( '.bar-used.bar', bar_holder ).width( new String( (bar_data['used']/bar_data['max'])*100 ) + '%' );
$( '.bar-used.val', bar_holder ).text( bar_data['used'] );
}