Commit 62126c6 1 parent 0f1967c commit 62126c6 Copy full SHA for 62126c6
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ define( function( require ) {
249
249
* @override
250
250
*/
251
251
show : function ( ) {
252
- if ( UpdateCheck . areUpdatesChecked && ! this . isShowing ) {
252
+ if ( UpdateCheck . areUpdatesChecked && ! this . isShowingProperty . value ) {
253
253
UpdateCheck . resetTimeout ( ) ;
254
254
255
255
// Fire off a new update check if we were marked as offline or unchecked before, and we handle updates.
@@ -273,7 +273,7 @@ define( function( require ) {
273
273
* @override
274
274
*/
275
275
hide : function ( ) {
276
- if ( this . isShowing ) {
276
+ if ( this . isShowingProperty . value ) {
277
277
Dialog . prototype . hide . call ( this ) ;
278
278
279
279
if ( UpdateCheck . areUpdatesChecked ) {
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ define( function( require ) {
101
101
* @public (joist-internal)
102
102
*/
103
103
show : function ( ) {
104
- if ( UpdateCheck . areUpdatesChecked && ! this . isShowing ) {
104
+ if ( UpdateCheck . areUpdatesChecked && ! this . isShowingProperty . value ) {
105
105
UpdateCheck . resetTimeout ( ) ;
106
106
107
107
// Fire off a new update check if we were marked as offline or unchecked before, and we handle updates.
@@ -124,7 +124,7 @@ define( function( require ) {
124
124
* @public (joist-internal)
125
125
*/
126
126
hide : function ( ) {
127
- if ( this . isShowing ) {
127
+ if ( this . isShowingProperty . value ) {
128
128
Dialog . prototype . hide . call ( this ) ;
129
129
130
130
if ( UpdateCheck . areUpdatesChecked ) {
You can’t perform that action at this time.
0 commit comments