Auto select input after selecting a date radio (#458)

Closes #21

- On Contact/Significant Other/Kid edit, selecting a radio button about the age will auto select the related input field.
- Simplified the JS of the app so we don't require individual vanilla JS files.
This commit is contained in:
Régis Freyd
2017-07-09 18:37:58 -04:00
committed by GitHub
parent 9569a81466
commit 4ba8045500
15 changed files with 494 additions and 479 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ class PeopleController extends Controller
$contact->country_id = null;
}
$birthdateApproximate = $request->input('birthdateApproximate');
$birthdateApproximate = $request->input('is_birthdate_approximate');
if ($birthdateApproximate == 'approximate') {
$age = $request->input('age');