File tree Expand file tree Collapse file tree 1 file changed +0
-31
lines changed
Expand file tree Collapse file tree 1 file changed +0
-31
lines changed Original file line number Diff line number Diff line change @@ -3093,37 +3093,6 @@ const keyColorPopup = (( ) => {
30933093
30943094/******************************************************************************/
30953095
3096-
3097- logger . resize = ( function ( ) {
3098- let timer ;
3099-
3100- const resize = function ( ) {
3101- const vrect = dom . body . getBoundingClientRect ( ) ;
3102- for ( const elem of qsa$ ( '.vscrollable' ) ) {
3103- const crect = elem . getBoundingClientRect ( ) ;
3104- const dh = crect . bottom - vrect . bottom ;
3105- if ( dh === 0 ) { continue ; }
3106- elem . style . height = Math . ceil ( crect . height - dh ) + 'px' ;
3107- }
3108- } ;
3109-
3110- const resizeAsync = function ( ) {
3111- if ( timer !== undefined ) { return ; }
3112- timer = self . requestAnimationFrame ( ( ) => {
3113- timer = undefined ;
3114- resize ( ) ;
3115- } ) ;
3116- } ;
3117-
3118- resizeAsync ( ) ;
3119-
3120- dom . on ( window , 'resize' , resizeAsync , { passive : true } ) ;
3121-
3122- return resizeAsync ;
3123- } ) ( ) ;
3124-
3125- /******************************************************************************/
3126-
31273096const grabView = function ( ) {
31283097 if ( logger . ownerId === undefined ) {
31293098 logger . ownerId = Date . now ( ) ;
You can’t perform that action at this time.
0 commit comments