File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ const LOAD_TWEAKS = [
146146
147147// Attributes that should be watched for changes and cause dynamic tweaks to be
148148// applied.
149- const DYNAMIC_TWEAK_ATTRIBS = [ "style" ] ;
149+ const DYNAMIC_TWEAK_ATTRIBS = [ "style" , "class" ] ;
150150
151151// Tweaks that must be applied whenever an element is added/changed.
152152const DYNAMIC_TWEAKS = [
@@ -159,6 +159,10 @@ const DYNAMIC_TWEAKS = [
159159 if ( content ) {
160160 el . setAttribute ( "aria-labelledby" , setAriaIdIfNecessary ( content ) ) ;
161161 }
162+ el . removeAttribute ( "aria-description" ) ;
163+ if ( el . classList . contains ( "IZ65Hb-bJ69tf" ) ) {
164+ el . setAttribute ( "aria-description" , "pinned" ) ;
165+ }
162166 } } ,
163167 // Check boxes in lists.
164168 { selector : '[role="checkbox"]' ,
You can’t perform that action at this time.
0 commit comments