From 8f28c1aa900efb25c074a8d9881c01d1cdb3f5e2 Mon Sep 17 00:00:00 2001 From: zepumph Date: Tue, 2 Feb 2021 12:55:02 -0900 Subject: [PATCH] accessibleDisplayed->pdomDisplayed, https://github.com/phetsims/scenery/issues/997 --- js/accessibility/pdom/ParallelDOM.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/accessibility/pdom/ParallelDOM.js b/js/accessibility/pdom/ParallelDOM.js index 2d4b65c11..7f9fe969b 100644 --- a/js/accessibility/pdom/ParallelDOM.js +++ b/js/accessibility/pdom/ParallelDOM.js @@ -2208,7 +2208,7 @@ const ParallelDOM = { * (unlike Node.wasDisplayed()). * @public */ - isAccessibleDisplayed: function() { + isPDOMDisplayed: function() { for ( let i = 0; i < this._accessibleInstances.length; i++ ) { if ( this._accessibleInstances[ i ].isGloballyVisible() ) { return true; @@ -2216,7 +2216,7 @@ const ParallelDOM = { } return false; }, - get accessibleDisplayed() { return this.isAccessibleDisplayed(); }, + get pdomDisplayed() { return this.isPDOMDisplayed(); }, /** * Set the value of an input element. Element must be a form element to support the value attribute. The input