File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1805,7 +1805,7 @@ describe('hover info', function() {
1805
1805
var scatterName = "scatter_" ;
1806
1806
var barName = "bar_" ;
1807
1807
var data = [ ] ;
1808
- for ( let i = 0 ; i < 3 ; i ++ ) {
1808
+ for ( var i = 0 ; i < 3 ; i ++ ) {
1809
1809
data . push ( trace ( barName + i , "bar" , 0.0 ) ) ;
1810
1810
data . push ( trace ( scatterName + i , "scatter" , 0.1 ) ) ;
1811
1811
}
@@ -1825,13 +1825,13 @@ describe('hover info', function() {
1825
1825
. then ( function ( ) {
1826
1826
1827
1827
var nodes = [ ] ;
1828
- for ( let i = 0 ; i < 3 ; i ++ ) {
1828
+ for ( var i = 0 ; i < 3 ; i ++ ) {
1829
1829
nodes . push ( hoverInfoNodes ( barName + i ) . secondaryBox . getBoundingClientRect ( ) ) ;
1830
1830
nodes . push ( hoverInfoNodes ( scatterName + i ) . secondaryBox . getBoundingClientRect ( ) ) ;
1831
1831
}
1832
1832
nodes . sort ( function ( a , b ) { return a . top - b . top ; } ) ;
1833
1833
1834
- for ( let i = 0 ; i < 5 ; i ++ ) {
1834
+ for ( var i = 0 ; i < 5 ; i ++ ) {
1835
1835
expect (
1836
1836
calcLineOverlap (
1837
1837
nodes [ i ] . top ,
You can’t perform that action at this time.
0 commit comments