@@ -149,7 +149,8 @@ const OverlayTrigger = React.createClass({
149
149
componentWillUnmount ( ) {
150
150
ReactDOM . unmountComponentAtNode ( this . _mountNode ) ;
151
151
this . _mountNode = null ;
152
- clearTimeout ( this . _hoverDelay ) ;
152
+ clearTimeout ( this . _hoverShowDelay ) ;
153
+ clearTimeout ( this . _hoverHideDelay ) ;
153
154
} ,
154
155
155
156
componentDidUpdate ( ) {
@@ -226,9 +227,13 @@ const OverlayTrigger = React.createClass({
226
227
} ,
227
228
228
229
handleDelayedShow ( ) {
229
- if ( this . _hoverDelay != null ) {
230
- clearTimeout ( this . _hoverDelay ) ;
231
- this . _hoverDelay = null ;
230
+ if ( this . _hoverHideDelay != null ) {
231
+ clearTimeout ( this . _hoverHideDelay ) ;
232
+ this . _hoverHideDelay = null ;
233
+ return ;
234
+ }
235
+
236
+ if ( this . state . isOverlayShown || this . _hoverShowDelay != null ) {
232
237
return ;
233
238
}
234
239
@@ -240,16 +245,20 @@ const OverlayTrigger = React.createClass({
240
245
return ;
241
246
}
242
247
243
- this . _hoverDelay = setTimeout ( ( ) => {
244
- this . _hoverDelay = null ;
248
+ this . _hoverShowDelay = setTimeout ( ( ) => {
249
+ this . _hoverShowDelay = null ;
245
250
this . show ( ) ;
246
251
} , delay ) ;
247
252
} ,
248
253
249
254
handleDelayedHide ( ) {
250
- if ( this . _hoverDelay != null ) {
251
- clearTimeout ( this . _hoverDelay ) ;
252
- this . _hoverDelay = null ;
255
+ if ( this . _hoverShowDelay != null ) {
256
+ clearTimeout ( this . _hoverShowDelay ) ;
257
+ this . _hoverShowDelay = null ;
258
+ return ;
259
+ }
260
+
261
+ if ( ! this . state . isOverlayShown || this . _hoverHideDelay != null ) {
253
262
return ;
254
263
}
255
264
@@ -261,8 +270,8 @@ const OverlayTrigger = React.createClass({
261
270
return ;
262
271
}
263
272
264
- this . _hoverDelay = setTimeout ( ( ) => {
265
- this . _hoverDelay = null ;
273
+ this . _hoverHideDelay = setTimeout ( ( ) => {
274
+ this . _hoverHideDelay = null ;
266
275
this . hide ( ) ;
267
276
} , delay ) ;
268
277
} ,
0 commit comments