exec.js 421 B

12345678910111213141516
  1. function addVariable(obj)
  2. {
  3. var $inputRow = $(obj).closest('.row-module');
  4. var $newRow = $('#insertItemBox').clone().insertAfter($inputRow).addClass('highlight');
  5. $newRow.find("input[type!='hidden']").val('');
  6. setTimeout(function()
  7. {
  8. $newRow.removeClass('highlight');
  9. }, 1600);
  10. }
  11. function deleteVariable(obj)
  12. {
  13. var $inputRow = $(obj).closest('.row-module');
  14. $inputRow.remove();
  15. }