-
Notifications
You must be signed in to change notification settings - Fork 0
/
editStory.html
61 lines (45 loc) · 1.6 KB
/
editStory.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Story Book</title>
<!-- Insert this line above script imports -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!-- normal script imports etc -->
<script src="jquery/jquery-1.12.4.js"></script>
<script src="jquery/jquery-ui.js"></script>
<link rel="stylesheet" href="jquery/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- Insert this line after script imports -->
<script>if (window.module) module = window.module;</script>
</head>
<body>
<div id='editStoryImageDiv'>
<img id="editStoryPicture" src="#" />
</div>
<div id="editStoryTags"></div>
<div id='editStoryPeople'>
<Button class="btn btn-primary" style="width:156px;font:17px arial,serif;position: absolute;top: 355px;" type='submit' id='editStorySubmit' onClick="editStory()">Edit Story</Button>
<div id='editStoryPeopleContent'></div>
</div>
<div id='editStoryStory'>
</div>
<!--
<div id='masterDivIndex'>
<div id='indexImageDiv'>
<img id="pictureIndex" src="#" alt="your image" />
</div>
<div id='indexStory'>
<input ondblclick="editIndexTextBox()" onfocusout="editIndexTextBox2()" type="text" id="indexStoryTextBox" readonly="readonly">
</div>
<div id='indexPeople'>
<h2 id='indexPerson'></h2>
</div>
</div>-->
<script src="./editStory.js"></script>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>