@@ -104,6 +104,7 @@ <h4 style="padding:3px;margin:0">
104104 < div class ="grid-stack-item-content gridbox " id ="triggerwindowgs ">
105105 < div class ="window-handle "> </ div >
106106 < div class ="window-content " style ="overflow-y:hidden ">
107+ < div id ="stale_header " style ="width:100% "> </ div >
107108 <!--<div class="window-title" id="trigger_title"
108109 style="padding-top:0px;min-height:26px;height:26px;">
109110 <h4 style="padding:3px;margin:0">
@@ -164,7 +165,7 @@ <h4 style="padding:3px;margin:0">
164165 < strong > Mongodb Buffers</ strong >
165166 < hr style ="margin:0;padding:0;margin-bottom:5px; ">
166167 < div class ="row ">
167- < div class ="col-xs-2 "> < strong > Updated:</ strong > </ div >
168+ < div class ="col-xs-2 "> < strong > Updated: </ strong > </ div >
168169 < div class ="col-xs-10 " id ="mongo_update_time "> </ div >
169170 < div class ="col-xs-2 "> < strong > eb0</ strong > </ div >
170171 < div class ="col-xs-10 progress " style ="margin-bottom:5px;padding:0 "
@@ -518,11 +519,11 @@ <h3>Muon Veto</h3>
518519 document . getElementById ( "trigger_event_rate" ) . innerHTML = parseFloat ( data [ 'rate' ] ) . toFixed ( 2 ) ;
519520 document . getElementById ( "trigger_last_collection" ) . innerHTML = data [ 'rname' ] + "(" + data [ 'rnumber' ] + ")" ;
520521 var tdate = new Date ( 1000 * ( parseFloat ( data [ 'eventbuilder_info' ] [ 'time' ] ) ) ) ;
521- var ttime = tdate . getFullYear ( ) + "." + ( '0' + tdate . getMonth ( ) ) . slice ( - 2 ) + "." + ( '0' + tdate . getDate ( ) ) . slice ( - 2 ) +
522+ var ttime = tdate . getFullYear ( ) + "." + ( '0' + ( 1 + tdate . getMonth ( ) ) ) . slice ( - 2 ) + "." + ( '0' + tdate . getDate ( ) ) . slice ( - 2 ) +
522523 " at " + ( '0' + tdate . getHours ( ) ) . slice ( - 2 ) + ":" + ( '0' + tdate . getMinutes ( ) ) . slice ( - 2 ) ;
523524 document . getElementById ( "trigger_time" ) . innerHTML = ttime ;
524525 var docdate = new Date ( 1000 * ( parseFloat ( data [ 'time' ] ) ) ) ;
525- var doctime = docdate . getFullYear ( ) + "." + ( '0' + docdate . getMonth ( ) ) . slice ( - 2 ) + "." +
526+ var doctime = docdate . getFullYear ( ) + "." + ( '0' + ( 1 + docdate . getMonth ( ) ) ) . slice ( - 2 ) + "." +
526527 ( '0' + docdate . getDate ( ) ) . slice ( - 2 ) +
527528 " at " + ( '0' + docdate . getHours ( ) ) . slice ( - 2 ) + ":" +
528529 ( '0' + docdate . getMinutes ( ) ) . slice ( - 2 ) ;
0 commit comments