From 9424186d10211d5019e02ff966edf27b9c182568 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Tue, 18 Jul 2017 12:19:00 -0400 Subject: [PATCH] Fixed the search button in top header, never got re-enabled when selecting destination completed --- js/app.js | 2 +- js/custom/headerSearch.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index 79e3a9a..28d6de9 100644 --- a/js/app.js +++ b/js/app.js @@ -331,7 +331,7 @@ $(document).ready(function () { complete: function(){ activities.prop('disabled',false); parks.prop('disabled',false); - category_button.prop('disabled',true); + category_button.prop('disabled',false); category_button.attr('value','Search'); $('.park-search option:first-child').text(park_text); diff --git a/js/custom/headerSearch.js b/js/custom/headerSearch.js index 20cc1f2..3b65810 100644 --- a/js/custom/headerSearch.js +++ b/js/custom/headerSearch.js @@ -322,7 +322,7 @@ $(document).ready(function () { complete: function(){ activities.prop('disabled',false); parks.prop('disabled',false); - category_button.prop('disabled',true); + category_button.prop('disabled',false); category_button.attr('value','Search'); $('.park-search option:first-child').text(park_text); -- 2.17.1