Fixed. I deployed this to your site, but for reference:
There is a historical convention that a form will submit when you press enter on a field that has no implicit handling of enter (e.g. a textarea would use it to put in a line break).
ios7 does not seem to follow this.
The fix was to add this to the SU input:
onkeypress="if (enter_pressed(event)) this.form.submit();"
There is a historical convention that a form will submit when you press enter on a field that has no implicit handling of enter (e.g. a textarea would use it to put in a line break).
ios7 does not seem to follow this.
The fix was to add this to the SU input:
onkeypress="if (enter_pressed(event)) this.form.submit();"