I'm implementing the wmd editor on my site, and no matter what I try I get serious lag as you type into the textarea. I'm using the version forked from wmd-new. Looking at the timeline tab of the chrome inspector, it seems that I get two repaint processes for each keypress event. One for the preview and a second, laggy one for the browser repainting the entire viewport. But the stackoverflow version is lickety-split fast and without this viewport repaint. It slows the operation down to the point that the cursor falls behind typing... which isn't acceptable obviously.

I've tried pulling out all the css, the resizer code, I've tried adding a #post-editor container with a hardcoded width like you have... just about everything I can think of. Is there some special css quirk or a javascript trick that you're adding to keep the viewport from getting repainted on each keypress?

Trying to be a lean startup, but I'm spending too much time spinning my wheels on this. :-( Would be super-appreciative of any help.

I'm not sure if this belongs in support or discussion. Feel free to edit my tags.

share|improve this question
Are you using this one? – balpha Feb 24 '11 at 19:35
Yep, that's the one. And the example that comes with this repo does not have the issue I mentioned. But the only way I was able to replicate that in my code was to strip out all extraneous css, javascript, and I even had to pull out any container elements, so that the wmd-panel divs were at the root level, just like the example. – Bob Ralian Feb 24 '11 at 19:59
There is an issue tracker set up for wmd-new, your best bet would be there :) Or, you could post your code and problem on SO :) – Tim Post Feb 24 '11 at 20:18
This seems to be css related. If I strip out the css completely from the wmd-new example, I see the same issue. So looking more closely, there appear to always be two repaint operations that happen on keypress. One to repaint the textarea and one to repaint the preview area. My problem is that for some reason when the html gets entered into the preview area, it repaints the entire viewport instead of just the preview block. I'm not enough of a css wizard to know the rules here. :-( Will post an example to stackoverflow when I can get something public. – Bob Ralian Feb 24 '11 at 21:56

closed as off topic by Tim Post Feb 24 '11 at 20:19

Questions on Meta Stack Overflow are expected to generally relate to the Stack Exchange family of websites and/or community in some way, within the scope defined in the faq.

You must log in to answer this question.

Browse other questions tagged