You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following code which basically loads three JavaScript ace editor sessions:
But the problem is for each and every session it creates new worker-javascript.js network request for the same mode. I am supposed to have editor for 10 to 30 JavaScript ace-editor sessions in the single page to write different functions in JavaScript at various places, so this is eating memory and getting my Chrome browser crashed as it is requesting the worker every time for the same mode.
Following is my sample html file: (With angular app)
This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.
I have the following code which basically loads three JavaScript ace editor sessions:
But the problem is for each and every session it creates new worker-javascript.js network request for the same mode. I am supposed to have editor for 10 to 30 JavaScript ace-editor sessions in the single page to write different functions in JavaScript at various places, so this is eating memory and getting my Chrome browser crashed as it is requesting the worker every time for the same mode.
Following is my sample html file: (With angular app)
Following is my controller: (index.js)
I have even tried by using the same session (commented code above) as discussed at #344 , but didn't work.
Any help would be appreciated.
Plnkr is here http://plnkr.co/edit/lJUAW9EXsiC7RVuga9ia
The text was updated successfully, but these errors were encountered: