From 3af05ed55b4c750da5c7efb23dad2141c18bbae2 Mon Sep 17 00:00:00 2001 From: czaks Date: Tue, 17 Sep 2013 18:12:54 -0400 Subject: [PATCH] quick-reply.js and oekaki.js interoperation fix --- js/oekaki.js | 2 +- js/quick-reply.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/js/oekaki.js b/js/oekaki.js index 6197386d..e08f2d3f 100644 --- a/js/oekaki.js +++ b/js/oekaki.js @@ -16,7 +16,7 @@ var oekaki_form = '\ function init_oekaki() { // Add oekaki after the file input - $('input[type="file"]').parent().parent().after(oekaki_form); + $('form[name="post"]:not(#quick-reply) input[type="file"]').parent().parent().after(oekaki_form); // Add "edit in oekaki" links $(".fileinfo .unimportant").append(' ['+_('Edit in oekaki')+']'); // Init oekaki vars diff --git a/js/quick-reply.js b/js/quick-reply.js index 267b6915..ea56b984 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -232,6 +232,11 @@ var show_quick_reply = function(){ $td.removeAttr('colspan'); } } + + // Remove oekaki if existent + if ($(this).is('#oekaki')) { + $(this).remove(); + } // Remove mod controls, because it looks shit. if ($td.find('input[type="checkbox"]').length) {