diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-12-19 10:53:04 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-12-19 10:53:04 -0800 |
commit | 40bc510cb76f546199a53da5e318e89e6a2c33d4 (patch) | |
tree | a808ec0f17957693cc369f84ad51c89a69d32958 /views/new-post.php | |
parent | 4aa06023f0c25a10d5eaeafaeb30034e0a4f2e95 (diff) |
reset reply context state when URL is removed
Diffstat (limited to 'views/new-post.php')
-rw-r--r-- | views/new-post.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/views/new-post.php b/views/new-post.php index 68460d0..d75d6b4 100644 --- a/views/new-post.php +++ b/views/new-post.php @@ -310,6 +310,14 @@ $(function(){ $("#note_in_reply_to").on('change', function(){ var reply_to = $("#note_in_reply_to").val(); + + if(reply_to == "") { + $(".reply-section").addClass("hidden"); + $(".reply-context").addClass("hidden"); + $("#expand-reply").removeClass("hidden"); + return; + } + $(".reply-section .loading").removeClass("hidden"); $.get("/reply/preview", {url:reply_to}, function(data){ |