edit.ui.js 233 B

123456
  1. window.changeProduct = function()
  2. {
  3. const productID = $('[name=product]').val();
  4. const url = $.createLink('feedback', 'edit', 'id=' + feedbackID + '&productID=' + productID);
  5. isInModal ? loadModal(url) : loadPage(url);
  6. }