-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
95 lines (64 loc) · 2.19 KB
/
popup.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
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Popup for Extension</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
<!-- <label for="myCheck">Checkbox:</label>
<input type="checkbox" id="myCheck" onclick="myFunction()"> -->
<h1> Tekstihindaja </h1>
<table>
<tr>
<td><button id="text-mistakes-button" >Eksimused</button></td>
<td><button id="level-assessment-button" >Tasemehinnang</button></td>
<td><button id="text-complexity-button" >Keerukus</button></td>
<td><button id="text-diversity-button" >Mitmekesisus</button></td>
</tr>
</table>
<div id="assessment-area">
<div id="assessment-details"></div>
</div>
<div id="complexity-area">
<h2>
<div id="complexity"></div>
<br>
<div id="sentences"> </div>
<div id="words"></div>
<div id="syllables"></div>
<div id="multisyllables"></div>
<div id="longwords"></div>
<div id="smog"></div>
<div id="fkindex"></div>
<div id="lix"></div>
<br>
<div id="sentenceslevel"></div>
</h2>
</div>
<div id="diversity-area">
<h2>
<div id="diversity"></div>
<br>
<div id="diversitysentence"> </div>
<div id="differentwords"></div>
<div id="klss"></div>
<div id="jlss"></div>
<div id="mtld"></div>
<div id="hdd"></div>
</h2>
</div>
<div id="corrected-area">
<h2> <div id="corrected-words"></div> </h2>
<h2> <div id="no-mistakes" ></div> </h2>
</div>
<!-- <h2>Vigane valitud lause oli :</h2> -->
<!-- <h2> <div id="sent-text"></div> </h2> -->
<h3 id="error-message" style="color:red;" ></h3>
<h3 id="success-message" style="color:green;"></h3>
<!-- <h3 id="test" text-align="left" style="background-color: #AEF359" >Elle poolt pakutud parandus </h3>
<h3 style="background-color: #f4b8c2">Elle poolt leitud vea parandus </h3> -->
<button id="close-button">Sulge</button>
<script src="popup.js"></script>
</body>
</html>