summaryrefslogtreecommitdiff
path: root/views/new-bookmark.php
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2016-05-20 08:09:32 -0700
committerAaron Parecki <aaron@parecki.com>2016-05-20 08:09:32 -0700
commitf255179c39211a159932ca3f8a2738b3c943f09d (patch)
tree367f3cdabff7b6c7367a5684325a948abece6982 /views/new-bookmark.php
parentbc2ce00d55741de7c91d41dd3bc6e8e515c3f9e9 (diff)
don't need to json.parse when the content type header is right
Diffstat (limited to 'views/new-bookmark.php')
-rw-r--r--views/new-bookmark.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/views/new-bookmark.php b/views/new-bookmark.php
index 6ab0606..7f381ab 100644
--- a/views/new-bookmark.php
+++ b/views/new-bookmark.php
@@ -80,9 +80,7 @@ $(function(){
content: $("#note_content").val(),
category: csv_to_array($("#note_category").val()),
'syndicate-to': syndications
- }, function(data){
- var response = JSON.parse(data);
-
+ }, function(response){
if(response.location != false) {
$("#test_success").removeClass('hidden');