Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello I'm using the ACE editor and I would like to disable the syntax checker, I've found that removing the worker-javascript.js file seems to do the trick but I hope there's a cleaner way as I'm not sure what else I'm disabling or even breaking by removing that file.

Thanks.

share|improve this question

1 Answer

up vote 3 down vote accepted

I also didn't find this in documentation, so I've looked at ACE source code. You can disable worker with the following lines of code:

var editor = ace.edit(document.getElementById('test'));
editor.getSession().setUseWorker(false);
share|improve this answer
indeed, I got a similar answer on the mailing list: groups.google.com/forum/?fromgroups=#!topic/ace-discuss/… – Samus_ Oct 23 '12 at 13:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.