@@ -1812,7 +1812,7 @@ function BlackboxLogViewer() {
1812
1812
newGraphConfig ( lastGraphConfig ) ;
1813
1813
}
1814
1814
} else {
1815
- ( graphZoom == GRAPH_MIN_ZOOM ) ?setGraphZoom ( null , false ) :setGraphZoom ( GRAPH_MIN_ZOOM , false ) ;
1815
+ ( graphZoom == GRAPH_MIN_ZOOM ) ?setGraphZoom ( null , true ) :setGraphZoom ( GRAPH_MIN_ZOOM , true ) ;
1816
1816
}
1817
1817
} catch ( e ) {
1818
1818
console . log ( 'Workspace toggle feature not functioning' ) ;
@@ -1926,11 +1926,11 @@ function BlackboxLogViewer() {
1926
1926
tooltips : percentageFormat ,
1927
1927
format : percentageFormat
1928
1928
} )
1929
- . on ( "slide change set " , function ( ) {
1929
+ . on ( "slide" , function ( ) {
1930
1930
setPlaybackRate ( parseFloat ( $ ( this ) . val ( ) ) , false ) ;
1931
1931
} )
1932
1932
. dblclick ( function ( ) {
1933
- $ ( this ) . val ( 100 ) ;
1933
+ setPlaybackRate ( 100 , true ) ;
1934
1934
} ) ;
1935
1935
1936
1936
$ ( ".playback-rate-control .noUi-handle" ) . text ( playbackRate + '%' ) ;
@@ -1948,11 +1948,11 @@ function BlackboxLogViewer() {
1948
1948
tooltips : true ,
1949
1949
format : percentageFormat
1950
1950
} )
1951
- . on ( "slide change set " , function ( ) {
1951
+ . on ( "slide" , function ( ) {
1952
1952
setGraphZoom ( parseFloat ( $ ( this ) . val ( ) ) , false ) ;
1953
1953
} )
1954
1954
. dblclick ( function ( ) {
1955
- $ ( this ) . val ( 100 ) ;
1955
+ setGraphZoom ( 100 , true ) ;
1956
1956
} ) ;
1957
1957
1958
1958
$ ( '.navbar-toggle' ) . click ( function ( e ) {
0 commit comments