monster_menus-9.0.x-dev/js/node_redir.js
js/node_redir.js
(function ($, Drupal) {
Drupal.behaviors.MMNodeRedir = {
attach: function (context) {
$(once('node-redir-url', '.node-redir-url', context)).each(function () {
$(this).change(function () {
if (this.value !== '' && this.form['field_redirect_mmtid[0][value]'].value !== '')
this.form['field_redirect_mmtid[0][value]'].delAll();
});
});
}
};
})(jQuery, Drupal);