Replies: 3 comments
-
Moving this to discussions because it seems like a configuration issue rather than bug in Ace |
Beta Was this translation helpful? Give feedback.
0 replies
-
Does it reappear when you resize the window? as a simple workaround you can do var observer = new ResizeObserver(function(e) {
editor.resize()
});
observer.observe(editor.container); |
Beta Was this translation helpful? Give feedback.
0 replies
-
I rewrote the code with many changes that I don't know which one fixed it; I wish I could update you here with solution... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the bug
In a dynamically built tabs AND accordion (bootstrap 5.2) I am facing two problems:
I have tried resizing but have not been able to nail the issue. I'm using Firefox and linux fedora 36.
Expected Behavior
to preserve the editors when tab or accordion is closed temporarily
Current Behavior
** Note: for the second situation only it happens to tabs that I view, so if I go back and click on one that I didn't view; that still shows Ace editor with no problem
https://imgur.com/a/0rZgnbT
Reproduction Steps
create the editor inside multiple nav-tabs or accordion then close them and go back to open them.
Live Demo: https://getlivewebsite.com/webstudio/
** Note: 1- login with google 2- create a webapp 3- go to Develop 4- try to open and edit files
Possible Solution
No response
Additional Information/Context
CSS:
====
Javascript
Ace Version
1.5.0
Beta Was this translation helpful? Give feedback.
All reactions