syncproduct.js 392 B

123456789101112131415161718
  1. function jumpBrowse()
  2. {
  3. window.parent.location.href = browseLink;
  4. }
  5. function closeParentModal()
  6. {
  7. parent.parent.$.cookie('selfClose', 1);
  8. parent.parent.$.closeModal(parent.parent.$('a.refresh').click(), '');
  9. }
  10. $("#dataform").submit(function(e)
  11. {
  12. if(feedbackCount !== 0 || feedbackModuleCount > 1)
  13. {
  14. if(confirm(syncConfirm)) $("#needMerge").val('yes');
  15. }
  16. });