Changeset 83455 in vbox for trunk/src/VBox/ValidationKit/testmanager/htdocs/js
- Timestamp:
- Mar 26, 2020 9:05:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/htdocs/js/common.js
r83454 r83455 899 899 if (oTooltip.oElm.onload === null) 900 900 { 901 oTooltip.oElm.onload = function(){ tooltipRepositionOnLoad(); setTimeout(tooltipRepositionOnLoad, 0); }; 901 oTooltip.oElm.onload = function() { 902 console.log('div/onload'); 903 /* tooltipRepositionOnLoad(); - do we need this any more? Don't think it's ever called... 904 setTimeout(tooltipRepositionOnLoad, 0); - do we need this any more? */ 905 }; 902 906 } 903 907 } … … 1085 1089 1086 1090 oIFrameElement.onload = function() { /* A slight delay here to give time for #rXXXX scrolling before we show it. */ 1087 setTimeout(function(){ tooltipReallyShow(oTooltip, oParent); svnHistoryTooltipOnLoad();},1091 setTimeout(function(){console.log('iframe/onload'); tooltipReallyShow(oTooltip, oParent); svnHistoryTooltipOnLoad();}, 1088 1092 isBrowserInternetExplorer() ? 256 : 64); 1089 1093 };
Note:
See TracChangeset
for help on using the changeset viewer.