~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/media/exercise_admin.js

  • Committer: William Grant
  • Date: 2009-03-18 03:31:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1290.
  • Revision ID: grantw@unimelb.edu.au-20090318033100-ps4nrsplos5p2b7q
Template out bits of the TestCasePart editor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
358
358
/* Functions to add, edit, and delete test case parts */
359
359
function edit_test_part(partid, testid, suiteid)
360
360
{
361
 
    var part_type = $("#test_part_part_type_" + partid).val();
362
 
    var test_type = $("#test_part_test_type_" + partid).val();
363
 
    var data = $("#test_part_data_" + partid).val();
364
 
    var filename = $("#test_part_file_" + partid).val();
 
361
    var part_type = $("#test_part_" + partid + "_part_type").val();
 
362
    var test_type = $("#test_part_" + partid + "_test_type").val();
 
363
    var data = $("#test_part_" + partid + "_data").val();
 
364
    var filename = $("#test_part_" + partid + "_file").val();
365
365
    
366
366
    var callback = function(xhr)
367
367
    {