Project

General

Profile

« Previous | Next » 

Revision 602ba31f

Added by Tomer Brisker about 5 years ago

Refs #26198 - return result from deprecated js functions

Also, specify which version to remove them

View differences:

app/assets/javascripts/deprecation.js
function toggle_multiple_ok_button(element) {
tfm.tools.deprecate(
'toggle_multiple_ok_button',
'tfm.hosts.table.toggleMultipleOkButton'
'tfm.hosts.table.toggleMultipleOkButton', '1.24'
);
tfm.hosts.table.toggleMultipleOkButton(element);
return tfm.hosts.table.toggleMultipleOkButton(element);
}
function build_modal(element, args) {
tfm.tools.deprecate('build_modal', 'tfm.hosts.table.buildModal');
tfm.hosts.table.buildModal(element, args);
tfm.tools.deprecate('build_modal', 'tfm.hosts.table.buildModal', '1.24');
return tfm.hosts.table.buildModal(element, args);
}
function submit_modal_form(args) {
tfm.tools.deprecate('submit_modal_form', 'tfm.hosts.table.submitModalForm');
tfm.hosts.table.submitModalForm(args);
tfm.tools.deprecate('submit_modal_form', 'tfm.hosts.table.submitModalForm', '1.24');
return tfm.hosts.table.submitModalForm(args);
}
function build_redirect(args) {
tfm.tools.deprecate('build_redirect', 'tfm.hosts.table.buildRedirect');
tfm.hosts.table.buildRedirect(args);
tfm.tools.deprecate('build_redirect', 'tfm.hosts.table.buildRedirect', '1.24');
return tfm.hosts.table.buildRedirect(args);
}
function toggleCheck(args) {
tfm.tools.deprecate('toggleCheck', 'tfm.hosts.table.toggleCheck');
tfm.hosts.table.toggleCheck(args);
tfm.tools.deprecate('toggleCheck', 'tfm.hosts.table.toggleCheck', '1.24');
return tfm.hosts.table.toggleCheck(args);
}
function hostChecked(args) {
tfm.tools.deprecate('hostChecked', 'tfm.hosts.table.hostChecked');
tfm.hosts.table.hostChecked(args);
tfm.tools.deprecate('hostChecked', 'tfm.hosts.table.hostChecked', '1.24');
return tfm.hosts.table.hostChecked(args);
}
function foreman_url(url) {
tfm.tools.deprecate('foreman_url', 'tfm.tools.foremanUrl');
tfm.tools.foremanUrl(url);
tfm.tools.deprecate('foreman_url', 'tfm.tools.foremanUrl', '1.24');
return tfm.tools.foremanUrl(url);
}

Also available in: Unified diff