From affcc547b5670f0b11b842357a8391cb503d7d85 Mon Sep 17 00:00:00 2001 From: Gabriel Schulhof Date: Fri, 26 Oct 2012 01:13:31 +0300 Subject: [PATCH] [popup] Rename function _maybeRefreshTimeout to _expectResizeEvent --- js/widgets/popup.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/widgets/popup.js b/js/widgets/popup.js index b76cdbdae83..119cc4e3d10 100644 --- a/js/widgets/popup.js +++ b/js/widgets/popup.js @@ -87,7 +87,7 @@ define( [ "jquery", } }, - _maybeRefreshTimeout: function() { + _expectResizeEvent: function() { var winCoords = windowCoords(); if ( this._resizeData ) { @@ -113,7 +113,7 @@ define( [ "jquery", _resizeTimeout: function() { if ( this._isOpen ) { - if ( !this._maybeRefreshTimeout() ) { + if ( !this._expectResizeEvent() ) { if ( this._ui.container.hasClass( "ui-selectmenu-hidden" ) ) { // effectively rapid-open the popup while leaving the screen intact this._trigger( "beforeposition" ); @@ -134,7 +134,7 @@ define( [ "jquery", _handleWindowResize: function( e ) { if ( this._isOpen ) { - if ( ( this._maybeRefreshTimeout() || this._orientationchangeInProgress ) && + if ( ( this._expectResizeEvent() || this._orientationchangeInProgress ) && !this._ui.container.hasClass( "ui-selectmenu-hidden" ) ) { // effectively rapid-close the popup while leaving the screen intact this._ui.container @@ -146,7 +146,7 @@ define( [ "jquery", _handleWindowOrientationchange: function( e ) { if ( !this._orientationchangeInProgress && this._isOpen ) { - this._maybeRefreshTimeout(); + this._expectResizeEvent(); this._orientationchangeInProgress = true; } }, @@ -525,7 +525,7 @@ define( [ "jquery", _completeOpen: function() { this._ui.container.attr( "tabindex", "0" ).focus(); - this._maybeRefreshTimeout(); + this._expectResizeEvent(); this._trigger( "afteropen" ); },