mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-13 18:40:49 +01:00
that didn't work. try this?
This commit is contained in:
parent
7bd3a1a3bf
commit
e6934eceb2
@ -142,10 +142,10 @@ var show_quick_reply = function(){
|
|||||||
$('#body').val($(this).val());
|
$('#body').val($(this).val());
|
||||||
});
|
});
|
||||||
// Synchronise other inputs
|
// 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[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());
|
$('form[name="post"] input[name="' + $(this).attr('name') + '"]').val($(this).val());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user