From e6934eceb2983e5f138373b340b0bd3ec0a33865 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Sun, 15 Sep 2013 07:37:57 +1000 Subject: [PATCH] that didn't work. try this? --- js/quick-reply.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/quick-reply.js b/js/quick-reply.js index 808abf0f..b1a92a56 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -142,10 +142,10 @@ var show_quick_reply = function(){ $('#body').val($(this).val()); }); // Synchronise other inputs - $('form[name="post"] input:not([type="submit"]):not([type="password"]):not([type="file"])').bind('change input propertychange', function() { + $('form[name="post"] input:not[type="text"],select').bind('change input propertychange', function() { $postForm.find('input[name="' + $(this).attr('name') + '"]').val($(this).val()); }); - $postForm.find('input:not([type="submit"]):not([type="password"]):not([type="file"])').bind('change input propertychange', function() { + $postForm.find('input[type="text"],select').bind('change input propertychange', function() { $('form[name="post"] input[name="' + $(this).attr('name') + '"]').val($(this).val()); }); };