We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, i am using ace editor in Firefox 34 (win xp).
In recent changes browser throw an error in line 17339. TypeError: activeIndentGuides.forEach is not a function
TypeError: activeIndentGuides.forEach is not a function
Changing
activeIndentGuides.forEach(function (el) { el.classList.remove("ace_indent-guide-active"); });
To
for(var i = 0; i < activeIndentGuides.length; i++){ activeIndentGuides[i].classList.remove("ace_indent-guide-active"); };
will fix this.
Please make this change to original source.
Thanks
avoid foreach loop to make it work in old browser as well.
foreach throws an error
change line 17339
No response
1.39.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Hello, i am using ace editor in Firefox 34 (win xp).
In recent changes browser throw an error in line 17339.
TypeError: activeIndentGuides.forEach is not a function
Changing
To
will fix this.
Please make this change to original source.
Thanks
Expected Behavior
avoid foreach loop to make it work in old browser as well.
Current Behavior
foreach throws an error
Reproduction Steps
Possible Solution
change line 17339
Additional Information/Context
No response
Ace Version / Browser / OS / Keyboard layout
1.39.0
The text was updated successfully, but these errors were encountered: