mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2025-03-20 18:10:09 -04:00
Remove for-of loop which requires Symbol polyfill
This commit is contained in:
parent
db3724072f
commit
6676b37a80
1 changed files with 2 additions and 2 deletions
|
@ -196,7 +196,7 @@ export function inappBlocksGuide () {
|
|||
'BLOCKS_GO_TO_PAGE_DESCRIPTION'
|
||||
];
|
||||
|
||||
for (let key of blockDescriptionKeys) {
|
||||
gn(key).textContent = Localization.localize(key);
|
||||
for (let i = 0; i < blockDescriptionKeys.length; i++) {
|
||||
gn(blockDescriptionKeys[i]).textContent = Localization.localize(blockDescriptionKeys[i]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue