view index.html @ 950:05e7edb032b9

Fix Bug #1241 and #1213: Added checks each time new test page is loaded that all audioObjects have decoded. Writes to browser console WAIT and does not issue any play command if any audioObjects not ready.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Mon, 25 May 2015 11:14:12 +0100
parents 759c2ace3c65
children 55bf2500f278
line wrap: on
line source
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8" />


		<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
		Remove this if you use the .htaccess -->
		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

		<title>apeTool</title>
		<meta name="description" content="" />
		<meta name="author" content="" />
		
		<!-- Load up the default core JS and CSS files-->
		<link rel='stylesheet' type='text/css' href='graphics.css'>
		<link rel='stylesheet' type='text/css' href='structure.css'>
		<!-- Use jQuery hosted from Google CDN -->
		<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
		<script src="jquery-2.1.4.js"></script>
		<script src='core.js'></script>
		<script type="text/javascript">
			window.onbeforeunload = function() {
				return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
			};
		</script>
		<!-- Uncomment the following script for automatic loading of projects -->
		<script>
			url = 'PXL_test/brecht.xml'; //Project XML document location
			loadProjectSpec(url);
		</script>
		
	</head>

	<body>
		<!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
		<!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
		<div id='topLevelBody'>
			<p>HTML5 APE Tool</p>
		</div>
	</body>
</html>