Jono Menz

Results 107 comments of Jono Menz

So I tried implementing requestAnimationFrame but unfortunately it doesn't fix the FF jumpiness bug. See https://github.com/jonom/jquery-focuspoint/commit/40cb1480421bd2ba6fcd0a485eb8b1dbcc80d2cf Something I discovered with requestAnimationFrame is there's no way to limit the frame rate......

Okay thinking about all this frame rate stuff, another approach would be to not let people set their own frame rate, let requestAnimationFrame do that and fallback to 15fps with...

Say it takes you 2 seconds of dragging to resize a window, during that 2 seconds the resize event is continuously firing - let's say every 10ms. If you set...

Hi @purplespider looks like #46 is related. I pushed up a fix a while ago (tweaked it this morning) that I think should help you - would you be able...

Interesting. I don't use UserForms myself so I may not get a chance to debug this further for now, sorry. If you're able to look in to it more let...

I went further down the rabbit hole this morning. Problem seems to be that the result of Controller::handleAction() can be all kinds of things, including a Controller (API says only...

@purplespider possibly just changing UserForms to render the result would fix the issue for you. Change [this part](https://github.com/silverstripe/silverstripe-userforms/blob/53e4ba079f682bcd8db9be97f9bcb0e7adf3f9b4/code/Control/UserDefinedFormController.php#L142-L145) to ``` return $this->render([ 'Content' => DBField::create_field('HTMLText', $this->Content), 'Form' => $this->Form() ]);...

I think the solution for this is going to be re-adding support for `$BetterNavigator` in templates, but making it optional, so sites that are affected by this issue (e.g. any...

Thanks for the feedback and offer to do a translation wernerkrauss, I will look in to the process. In the mean time you should be able to do a translation...

@olifen7 did you find anything?