mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-18 16:18:47 +02:00
N°3657 - Replace calls to deprecate jQuery methods (".click(callback)" to ".on('click', callback)")
This commit is contained in:
@@ -229,7 +229,7 @@ $('form').each(function () {
|
||||
width: 0
|
||||
}));
|
||||
});
|
||||
$('#btn_back').click(function() { $('#wiz_form').data('back', true); });
|
||||
$('#btn_back').on('click', function() { $('#wiz_form').data('back', true); });
|
||||
|
||||
$('#wiz_form').on('submit', function() {
|
||||
if ($(this).data('back'))
|
||||
|
||||
Reference in New Issue
Block a user