File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 117
117
if ( el . offsetParent ) {
118
118
do {
119
119
curtop += el . offsetTop ;
120
- } while ( el = el . offsetParent ) ;
120
+ el = el . offsetParent ;
121
+ } while ( el )
121
122
return curtop ;
122
123
}
123
124
} ,
Original file line number Diff line number Diff line change 346
346
}
347
347
348
348
// D
349
- var scrollBottomOffsetToTop = rect . bottom ;
349
+ // var scrollBottomOffsetToTop = rect.bottom;
350
350
// D - A
351
351
scrollViewOffsetHeight = self . __originalContainerHeight ;
352
352
//console.log('Scroll view offset height', scrollViewOffsetHeight);
382
382
// if there are things below the scroll view account for them and
383
383
// subtract them from the keyboard height when resizing
384
384
// E - D E D
385
- var scrollBottomOffsetToBottom = e . detail . viewportHeight - scrollBottomOffsetToTop ;
385
+ // var scrollBottomOffsetToBottom = e.detail.viewportHeight - scrollBottomOffsetToTop;
386
386
387
387
// 0 or D - B if D > B E - B E - D
388
388
//var keyboardOffset = e.detail.keyboardHeight - scrollBottomOffsetToBottom;
You can’t perform that action at this time.
0 commit comments