This repository was archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·46 lines (39 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<base target="_blank">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<script src="dist/dist.js"></script>
<script src="dist/sn-codemirror-search/search.js"></script>
<script src="dist/sn-codemirror-search/searchcursor.js"></script>
<script src="dist/sn-codemirror-search/dialog/dialog.js"></script>
<link rel="stylesheet" media="all" href="dist/dist.css">
<link rel="stylesheet" media="all" href="dist/sn-codemirror-search/dialog/dialog.css">
</head>
<body>
<div id="wrapper">
<textarea id="code" name="code"></textarea>
</div>
<div class="modal micromodal-slide" id="modal-open-link">
<div class="modal__overlay" tabindex="-1" data-micromodal-close>
<div id="modal-container" class="modal__container" role="dialog">
<header id="modal-header" class="modal__header">
<h2 class="modal__title">
Open Link
</h2>
</header>
<div id="modal-content-content" class="modal-content-content">
<div id="modal-content" class="modal__content">
<p>Do you want to open <a id="modal-link-description" class="cm-link"></a> ?</p>
</div>
<footer id="modal-footer" class="modal__footer">
<button class="modal__btn" data-micromodal-close>CANCEL</button>
<a id="modal-link-button" target="_blank" class="modal__btn">OPEN</a>
</footer>
</div>
</div>
</div>
</div>
</body>
</html>