forked from arnoudkooi/SN-Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.html
More file actions
29 lines (24 loc) · 730 Bytes
/
diff.html
File metadata and controls
29 lines (24 loc) · 730 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Diff</title>
<link rel="stylesheet" href="css/diff.css">
<script src="js/monaco/vs/loader.js"></script>
<script src="js/monaco/diff.js"></script>
</head>
<body>
<section id="compare-details">
<div class="titles" id="titles">
<span id="left">Please load from servicenow instance</span>
<span id="right"></span>
</div>
</section>
<section id="container"></section>
<section class="actions">
<label>Inline</label>
<input type="checkbox" class="inline-it">
</section>
</body>
</html>