diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-04-08 11:54:44 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-04-08 11:54:44 -0700 |
commit | 76dedd3c22cf1613b9930fa0309793cea20cd1b2 (patch) | |
tree | 8bd71ff2761b411bce5b14bfd8fc0118d579b86c /views/new-post.php | |
parent | 9662af5a17a660a6c921be72a370b3e14cdd08a4 (diff) |
fix posting multiple tags, add more formatting buttons to medium editor
Diffstat (limited to 'views/new-post.php')
-rw-r--r-- | views/new-post.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/views/new-post.php b/views/new-post.php index 46be7a9..be5dafb 100644 --- a/views/new-post.php +++ b/views/new-post.php @@ -146,7 +146,10 @@ $(function(){ // If the user didn't enter any categories, add them from the post if(!userHasSetCategory) { - $("#note_category").val($("#note_content").val().match(/#[a-z0-9]+/g).map(function(tag){ return tag.replace('#',''); }).join(", ")); + var tags = $("#note_content").val().match(/#[a-z0-9]+/g); + if(tags) { + $("#note_category").val(tags.map(function(tag){ return tag.replace('#',''); }).join(", ")); + } } }); @@ -196,7 +199,9 @@ $(function(){ formData.append("location", v); } if(category.length > 0) { - formData.append("category", category); + for(var i in category) { + formData.append("category[]", category[i]); + } } if(syndications.length > 0) { formData.append("syndicate-to", syndications); |