diff --git a/application/views/mobile_first/ch-info-page-form.php b/application/views/mobile_first/ch-info-page-form.php index b234f4b6..59d41556 100644 --- a/application/views/mobile_first/ch-info-page-form.php +++ b/application/views/mobile_first/ch-info-page-form.php @@ -146,7 +146,55 @@ margin-bottom: -25px; + +
+ When would you travel? +
+ +
+
*
@@ -446,184 +494,243 @@ margin-bottom: -25px;
-->
-
-
-
+
+
-
+
+ // Trip Length
+ $('#tripLengthPlus').click(function () {
+ tripLength++;
+ $('#tripLengthNumber').val(tripLength);
+ });
+
+ $('#tripLengthMinus').click(function () {
+ if (tripLength > 1) {
+ tripLength--;
+ $('#tripLengthNumber').val(tripLength);
+ }
+ });
+ })
+
\ No newline at end of file
+
+
\ No newline at end of file