source: tmcsimulator/trunk/webapps/einotebook/roles/index.html @ 540

Revision 540, 1.2 KB checked in by jdalbey, 6 years ago (diff)

Add roles page to EINotebook, version 1. Modified index.html, Event.js, LoadEvents?.js, notebook.js

  • Property svn:executable set to *
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2  "http://www.w3.org/TR/html4/loose.dtd">
3<html>
4    <!-- This is the page containing the simulation script and jump button -->
5  <head>
6    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7    <link href="roles.css" rel="stylesheet" type="text/css">
8    <script type="text/javascript" src="../scripts/Time.js"></script> 
9    <script type="text/javascript" src="roles.js"></script> 
10    <script type="text/javascript" src="../scripts/cookies.js"></script>
11    <title>Script</title>
12  </head>
13  <body>
14   
15    <button class="jumpToCurrentEvent" 
16            onclick="jumpToLastExecutedEvent()">Jump to Current Event</button>
17    <!-- A combo box for which role is to be displayed on the page -->
18    <select id="desiredRole" onchange="changeRole()">
19      <option value="TELEPHONE CONVERSATION" selected="selected">TELEPHONE CONVERSATION</option>
20      <option value="MAINTENANCE_RADIO">MAINTENANCE_RADIO</option>
21      <option value="TMT_RADIO">TMT_RADIO</option>
22      <option value="CHP RADIO">CHP RADIO</option>
23    </select>
24     
25    <iframe id='view' src='../script/scrollframe.html' frameborder='0' scrolling='yes'
26            width='100%'></iframe>
27  </body>
28</html>
Note: See TracBrowser for help on using the repository browser.