Browse Source

that didn't work. try this?

pull/40/head
Michael Foster 11 years ago
parent
commit
e6934eceb2
  1. 4
      js/quick-reply.js

4
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());
});
};

Loading…
Cancel
Save