<html>
<head>
<title>Inquirer Tester</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8">
<script src="Merger.js"></script>
<script src="Inquirer.js"></script>
<script src="MergerTester.js"></script>
<script>
var testData = { "id": 3, "instructions": "1. Trim.\r\n2. Check.", "location": null, "name": "Nails.", "res": [{ "category": 1, "id": 2, "name": "Done or Skipped", "options": [{ "id": 8, "name": "Done" }, { "id": 9, "name": "Skipped" }],}]};
function doException() {
throw new Error("Error test");
}
</script>
</head>
<body>
<button onclick="1=1">Error</button><br/>
<button onclick="doException()">Exception</button><br/>
<button onclick="inquirer.show()">Call Inquirer</button><br/>
<button onclick="inquirer.inspect(testData)">Inspector</button><br/>
<button onclick="inquirer.console()">Console</button><br/>
<p>
<button onclick="merger.enter()">Enter Merger</button><br/>
</p>
<p>
<a href="inquirer.min.js">minified version</a>
</p>
</body>
</html>