-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (81 loc) · 3.71 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/stuProf.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="toolbar js-toolbar">
</div>
<div class="editor js-editor-wrapper">
<div class="js-editor-toolbar editor-toolbar" style="display: block;">
<div class="editor-dialog editor-dialog-close js-close-dialog hide">
<span class="editor-dialog__warning">Warning:</span>
<p>Save changes to the transcript before closing?</p>
<div class="btn-group">
<a class="btn dontSaveBtn">Don't Save</a>
<a class="btn cancelBtn js-close-dialog-cancel">Cancel</a>
<a class="btn saveBtn">Save</a>
</div>
</div>
<div class="editor-dialog editor-dialog-delete js-delete-dialog hide">
<span class="editor-dialog__warning">Warning:</span>
<p>Are you sure you would like to delete <strong>'<span class="js-delete-dialog-title"></span>'</strong> ?</p>
<div class="btn-group">
<a class="btn cancelBtn js-close-dialog-cancel">Cancel</a>
<a class="btn saveBtn js-delete-dialog-delete">Yes</a>
</div>
</div>
<div class="mce-toolbar-header">
<h1>Word Editor</h1>
<a title="Close" class="js-close-toolbar" href="#">X</a>
</div>
<div class="font-group clearfix editor-border-bottom">
<div class="editor__font-family">
</div>
<div class="editor__font-size">
</div>
</div>
<div class="editor__simple-controls editor-border-bottom clearfix">
<div class="editor__font-bold"></div>
<div class="editor__font-italic"></div>
<div class="editor__font-underline"></div>
</div>
<div class="colorInput editor-border-bottom clearfix"></div>
<div class="colorInputBg editor-border-bottom clearfix"></div>
<div class="editor__custom-style editor-border-bottom clearfix">
<span class="editor__custom-style__title">Styles</span>
</div>
<div class="editor__link-wrapper editor-border-bottom clearfix">
<label for="link-input">Insert Link</label>
<input type="text" id="link-input" class="editor__link-input" placeholder="www"/>
</div>
<div class="submit-buttons-group">
<a class="btn" id="cancelButton">Cancel</a>
<a class="btn saveEdits" id="saveButton">SAVE</a>
</div>
</div>
<textarea name="content" class="js-editor">
<div class="habrahabra">
<div class="habrahabra1">
<p>sdfaskdfkljhasdklfh</p>
<p>sdfas kdfkljha sdklfh</p>
<p>sdfaskdfk laskdf kljh jhasdklfh sdfasdf sdfasdfasdf sdfasdfasdf asdfasdf asdfsadfs sdfsdfsd
asdfasdf</p>
<p>sdfask dfklaskdf kljh jhasdklfh sdoiupoi oas idufop asodiu apsodif apsodifu aosdiu fpasodifu asodif
uspdofiu asodifu apsoidfu apsodifu paosiduf poasiduf poasiduf</p>
</div>
</div>
</textarea>
</div>
<script type="text/javascript" src="js/vendors/jquery-2.1.3.js"></script>
<script type="text/javascript" src="js/vendors/tinymce/js/tinymce/tinymce.jquery.dev.js"></script>
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-slider-pips.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<link rel="stylesheet" href="css/jquery-ui.css"/>
<link rel="stylesheet" type="text/css" href="css/jquery-ui-slider-pips.css">
</body>
</html>