mirror of https://github.com/apache/lucene.git
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:
parent
449296da9d
commit
65a9cc3643
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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'] );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue