create.ui.js 331 B

1234567891011
  1. window.changeProduct = function()
  2. {
  3. const productID = $('[name=product]').val();
  4. const url = $.createLink('feedback', 'create', 'extras=productID=' + productID);
  5. loadPage({url: url, selector: '#moduleBox'});
  6. }
  7. $(function()
  8. {
  9. if(productID == 'all') $('#moduleBox span.input-group-btn').addClass('hidden');
  10. })