Skip to content
This repository has been archived by the owner on Jan 24, 2018. It is now read-only.

Common Issues

dwebarts edited this page May 31, 2014 · 7 revisions

There's a gap at the bottom of the page

The gap appears on load

Try disabling the forceHeight option (set it to false).

The gap appears on mobile after inputs lose focus

Mobile (iOS + Android) browsers seem to scroll the page when the input would be covered by the keyboard, and don't scroll back onfocusout. For those using jQuery, the easiest way to fix this is probably:

if (mobile) {
window.scrollTo(0, 0);
}
});```
Clone this wiki locally