@@ -54,7 +54,11 @@ function onFocus(context, handler) {
54
54
55
55
let scrollbarSize ;
56
56
57
- if ( domUtils . canUseDom ) {
57
+ function getScrollbarSize ( ) {
58
+ if ( scrollbarSize !== undefined ) {
59
+ return scrollbarSize ;
60
+ }
61
+
58
62
let scrollDiv = document . createElement ( 'div' ) ;
59
63
60
64
scrollDiv . style . position = 'absolute' ;
@@ -64,13 +68,13 @@ if (domUtils.canUseDom) {
64
68
scrollDiv . style . overflow = 'scroll' ;
65
69
66
70
document . body . appendChild ( scrollDiv ) ;
67
-
68
71
scrollbarSize = scrollDiv . offsetWidth - scrollDiv . clientWidth ;
69
-
70
72
document . body . removeChild ( scrollDiv ) ;
73
+
71
74
scrollDiv = null ;
72
75
}
73
76
77
+
74
78
const Modal = React . createClass ( {
75
79
76
80
mixins : [ BootstrapMixin , FadeMixin ] ,
@@ -210,7 +214,7 @@ const Modal = React.createClass({
210
214
this . _originalPadding = container . style . paddingRight ;
211
215
212
216
if ( this . _containerIsOverflowing ) {
213
- container . style . paddingRight = parseInt ( this . _originalPadding || 0 , 10 ) + scrollbarSize + 'px' ;
217
+ container . style . paddingRight = parseInt ( this . _originalPadding || 0 , 10 ) + getScrollbarSize ( ) + 'px' ;
214
218
}
215
219
216
220
if ( this . props . backdrop ) {
@@ -308,8 +312,8 @@ const Modal = React.createClass({
308
312
309
313
return {
310
314
dialogStyles : {
311
- paddingRight : containerIsOverflowing && ! modalIsOverflowing ? scrollbarSize : void 0 ,
312
- paddingLeft : ! containerIsOverflowing && modalIsOverflowing ? scrollbarSize : void 0
315
+ paddingRight : containerIsOverflowing && ! modalIsOverflowing ? getScrollbarSize ( ) : void 0 ,
316
+ paddingLeft : ! containerIsOverflowing && modalIsOverflowing ? getScrollbarSize ( ) : void 0
313
317
}
314
318
} ;
315
319
}
0 commit comments