-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.html
36 lines (32 loc) · 844 Bytes
/
classes.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ES2015 Show Off</title>
<link rel="stylesheet" type="text/css" href="css/style.css"></link>
</head>
<body>
<div class="container">
<h1>Block Scope</h1>
<div class="row">
<div class="col-md-3 ">
<div class="list-group">
<span id="total-errors-container" class="list-group-item notice notice-danger " style="display:none;" >
<h4 id="totalerrors" class="list-group-item-heading count">
0
</h4>
<p class="list-group-item-text">
Number of Errors</p>
</span>
</div>
</div>
</div>
<div class="row">
<div id="mylog" class="md-3"></div>
</div>
</div>
<script src="js/logToDom.js"></script>
<script src="build/classes.bundle.js"></script>
</body>
</html>