diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-05-20 08:09:32 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-05-20 08:09:32 -0700 |
commit | f255179c39211a159932ca3f8a2738b3c943f09d (patch) | |
tree | 367f3cdabff7b6c7367a5684325a948abece6982 /views/new-itinerary.php | |
parent | bc2ce00d55741de7c91d41dd3bc6e8e515c3f9e9 (diff) |
don't need to json.parse when the content type header is right
Diffstat (limited to 'views/new-itinerary.php')
-rw-r--r-- | views/new-itinerary.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/views/new-itinerary.php b/views/new-itinerary.php index 7020e10..4f07476 100644 --- a/views/new-itinerary.php +++ b/views/new-itinerary.php @@ -185,8 +185,7 @@ $(function(){ "category": category } }) - }, function(data){ - var response = JSON.parse(data); + }, function(response){ if(response.location != false) { $("#test_success").removeClass('hidden'); |