-
Notifications
You must be signed in to change notification settings - Fork 1
/
author.html
47 lines (46 loc) · 1.58 KB
/
author.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/author.css">
<title>jsaBard · Author</title>
<script type="text/javascript" data-main="scripts/author.js" src="scripts/require.js" ></script>
</head>
<body>
<div id="welcomeContainer">
<p>Welcome to the jsaBard Author!</p>
<p>To start creating a new story, enter the name of a <a href="https://github.com/lonce/messageSurface">messageSurface</a>-generated controller and click 'Load'.</p>
<input disabled type="text" id="controllerInput" />
<button disabled id="loadControllerButton">Load</button>
<p>(Hint: Try "surface" to load the default controller)</p>
<p>If you'd rather continue editing an existing story, enter its name and click 'Load'</p>
<input disabled type="text" id="storyInput" />
<button disabled id="loadStoryButton">Load</button>
</div>
<div hidden id="authorContainer">
<div id="authorLeft">
<div id="scenes">
<button id="newScene">Add new scene</button>
</div>
</div><div id="authorRight">
<div id="saveBox">
<input id="storyName" type="text" placeholder="Story Name"/>
<button id="saveButton">Save</button>
</div>
<div id="sceneEditor">
<div id="soundBar">
<div id="soundFiller"> </div>
<div id="soundList">
</div>
<div id="newSoundDiv">
<select id="newSoundSelector">
</select>
<!-- <input id="newSoundName" type="text" placeholder="Sound Model"/> -->
<!-- <button id="newSound">Add</button> -->
</div>
</div>
<div id="controllerElementParams"></div>
</div>
</div>
</div>
</body>
</html>