-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditorWrapper.html
More file actions
124 lines (117 loc) · 6.18 KB
/
Copy patheditorWrapper.html
File metadata and controls
124 lines (117 loc) · 6.18 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<div id="messagesWrapper">
</div>
<div id="editorFrame">
<!---------------------------->
<!-- textbox -->
<!---------------------------->
<div class="editor">
<!-- canvas for the drawing component -->
<div class="canvas-container">
<canvas id="drawing-canvas" width="960" height="500" style="border:4px solid #000000"></canvas>
</div>
<div class="btn-toolbar">
<button type="button" id="bold" class="editor-toolbar-item btn toggle" title="Bold">
<i class="fa fa-bold"></i>
</button>
<button type="button" id="italic" class="editor-toolbar-item btn toggle" title="Italic">
<i class="fa fa-italic"></i>
</button>
<button type="button" id="underline" class="editor-toolbar-item btn toggle" title="Underline">
<i class="fa fa-underline"></i>
</button>
<button type="button" id="strikeThrough" class="editor-toolbar-item btn toggle" title="StrikeThrough">
<i class="fa fa-strikethrough"></i>
</button>
<div class="btn-group mine">
<button type="button" id="subscript" class="editor-toolbar-item btn radio toggle" title="Subscript">
<i class="fa fa-subscript"></i>
</button>
<button type="button" id="superscript" class="editor-toolbar-item btn radio toggle" title="Superscript">
<i class="fa fa-superscript"></i>
</button>
</div>
<div class="btn-group mine">
<button type="button" id="insertOrderedList" class="editor-toolbar-item btn toggle" title="Insert Ordered List">
<i class="fa fa-list-ol"></i>
</button>
<button type="button" id="insertUnorderedList" class="editor-toolbar-item btn toggle" title="Insert Unordered List">
<i class="fa fa-list-ul"></i>
</button>
</div>
<div class="btn-group mine">
<button type="button" id="outdent" class="editor-toolbar-item btn" title="Outdent">
<i class="fa fa-outdent"></i>
</button>
<button type="button" id="indent" class="editor-toolbar-item btn" title="Indent">
<i class="fa fa-indent"></i>
</button>
</div>
<div class="btn-group mine">
<button type="button" id="justifyLeft" class="editor-toolbar-item btn toggle active" title="Left Align">
<i class="fa fa-align-left"></i>
</button>
<button type="button" id="justifyCenter" class="editor-toolbar-item btn toggle" title="Center Align">
<i class="fa fa-align-center"></i>
</button>
<button type="button" id="justifyRight" class="editor-toolbar-item btn toggle" title="Right Align">
<i class="fa fa-align-right"></i>
</button>
<button type="button" id="justifyFull" class="editor-toolbar-item btn toggle" title="Block Justify">
<i class="fa fa-align-justify"></i>
</button>
</div>
<button type="button" id="removeFormatting" class="editor-toolbar-item btn" title="Remove Formatting">
<span class="fa-stack" style="font-size:9px;">
<i class="fa fa-ban fa-stack-2x"></i>
<i class="fa fa-font fa-stack-1x"></i>
</span>
</button>
<button type="button" id="undo" class="editor-toolbar-item btn" title="Undo">
<i class="fa fa-undo"></i>
</button>
<button type="button" id="redo" class="editor-toolbar-item btn" title="Redo">
<i class="fa fa-repeat"></i>
</button>
</div>
<div class="btn-toolbar">
<select id="fontName" class="editor-toolbar-item">
</select>
<select id="fontSize" class="editor-toolbar-item">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
</select>
<button type="button" id="image" class="editor-toolbar-item btn" title="Insert Image">
<i class="fa fa-file-image-o"></i>
</button>
<button type="button" id="horizontalRule" class="editor-toolbar-item btn" title="Insert Horizontal Rule">
hr
</button>
<button type="button" id="link" class="editor-toolbar-item btn" title="Insert Hyperlink">
<i class="fa fa-link"></i>
</button>
<button type="button" id="unlink" class="editor-toolbar-item btn" title="Remove Hyperlink">
<i class="fa fa-unlink"></i>
</button>
</div>
</div>
<div class = "form-group" id="editorOptionsWrapper">
<div>
<!--the textarea is hidden -->
<textarea id="editor-textarea" ></textarea>
<iframe id="editor-iFrame" name="iFrame" >
<head>
<link type="text/css" rel="Stylesheet" href="Style/simple.css" />
</head>
<body>
</body>
</iframe>
</div>
<button id = "btUpdateNotes" class = "btn btn-default" style="float: right;">Post Thought</button>
Update message button
</div>
</div>