File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,24 +62,24 @@ GUI.getTotalBurstTime = function () {
6262} ;
6363
6464GUI . showQuantumSpinner = function ( ) {
65- $ ( '#quantum' ) . css ( 'display' , 'inline' ) ;
65+ $ ( '#quantum' ) . show ( ) ;
6666 this . quantumVisible = true ;
6767} ;
6868
6969GUI . hideQuantumSpinner = function ( ) {
70- $ ( '#quantum' ) . css ( 'display' , 'none' ) ;
70+ $ ( '#quantum' ) . hide ( ) ;
7171 this . quantumVisible = false ;
7272} ;
7373
7474GUI . showPriorityColumn = function ( ) {
75- $ ( '#priorityButton' ) . css ( 'display' , 'inline' ) ;
75+ $ ( '#priorityButton' ) . show ( ) ;
7676 $ ( '.priority' ) . css ( 'display' , 'table-cell' ) ;
7777 this . priorityVisible = true ;
7878} ;
7979
8080GUI . hidePriorityColumn = function ( ) {
81- $ ( '#priorityButton' ) . css ( 'display' , 'none' )
82- $ ( '.priority' ) . css ( 'display' , 'none' ) ;
81+ $ ( '#priorityButton' ) . hide ( ) ;
82+ $ ( '.priority' ) . hide ( ) ;
8383 this . priorityVisible = false ;
8484} ;
8585
@@ -387,6 +387,7 @@ $(function () {
387387 } , min : 1
388388 } ) ;
389389 quantumSpinner . spinner ( 'value' , 5 ) ;
390+ $ ( '#quantum' ) . hide ( ) ;
390391
391392 var processError = false ;
392393
You can’t perform that action at this time.
0 commit comments