Mercurial > hg > webaudioevaluationtool
comparison core.js @ 1656:52d36936c582
Completed Handling of in-page pre/post responses
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Fri, 10 Apr 2015 17:43:53 +0100 |
parents | 21e887ed1e63 |
children | d4e55184f776 |
comparison
equal
deleted
inserted
replaced
1655:21e887ed1e63 | 1656:52d36936c582 |
---|---|
24 var projectXML; // Hold the parsed setup XML | 24 var projectXML; // Hold the parsed setup XML |
25 | 25 |
26 var testXMLSetups = []; // Hold the parsed test instances | 26 var testXMLSetups = []; // Hold the parsed test instances |
27 var testResultsHolders =[]; // Hold the results from each test for publishing to XML | 27 var testResultsHolders =[]; // Hold the results from each test for publishing to XML |
28 var currentTrackOrder = []; // Hold the current XML tracks in their (randomised) order | 28 var currentTrackOrder = []; // Hold the current XML tracks in their (randomised) order |
29 var currentTestHolder; // Hold an intermediate results during test - metrics | 29 var currentTestHolder; // Hold any intermediate results during test - metrics |
30 var audioEngineContext; // The custome AudioEngine object | 30 var audioEngineContext; // The custome AudioEngine object |
31 var projectReturn; // Hold the URL for the return | 31 var projectReturn; // Hold the URL for the return |
32 var preTestQuestions = document.createElement('PreTest'); // Store any pre-test question response | 32 var preTestQuestions = document.createElement('PreTest'); // Store any pre-test question response |
33 var postTestQuestions = document.createElement('PostTest'); // Store any post-test question response | 33 var postTestQuestions = document.createElement('PostTest'); // Store any post-test question response |
34 | 34 |