Changeset 178 for Dev/trunk/js/sequencerScripts.js
- Timestamp:
- 12/07/11 14:36:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/js/sequencerScripts.js
r169 r178 460 460 newAjaxRequest(requestString, "savesession.php", function(result){ 461 461 success = result.responseText; 462 }, false);462 }, true); 463 463 console.log(success); 464 464 } … … 523 523 pipelineTypes = stringToArray(pipelineTypes, ","); 524 524 var stepType = pipelineTypes[pipeline.indexOf(selectedStep)]; 525 526 525 var postForm = document.createElement("form"); 527 526 postForm.action = stepType.toLowerCase()+"Editor.php"; //redirect to "type"editor.php … … 529 528 var objectUid = document.createElement("input"); 530 529 objectUid.type = "hidden"; 530 objectUid.name = "objectUid"; 531 531 objectUid.value = selectedStep; 532 532 postForm.appendChild(objectUid);
Note: See TracChangeset
for help on using the changeset viewer.