forked from hsbakshi/reddit-check
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
comment.html
77 lines (77 loc) · 3.38 KB
/
comment.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style_reddit.css">
<link rel="stylesheet" type="text/css" href="style_editor.css">
<script src="jquery.min.js" language="javascript"></script>
<script src="lscache.min.js"></script>
<script src="snoowrap-v1.min.js"></script>
<script src="URI.js"></script>
<script src="js/libraries/moment.min.js"></script>
<script src="js/libraries/moment-precise-range.js"></script>
<script src="js/pagedown/Markdown.Converter.js"></script>
<script src="js/pagedown/Markdown.Editor.js"></script>
<script src="js/pagedown/Markdown.Sanitizer.js"></script>
<script src="js/snoowrap_background_message.js"></script>
<script src="js/models/content.js"></script>
<script src="js/reddit_lscache.js"></script>
<script src="shared.js"> </script>
<base target="_blank">
</head>
<body class="container">
<div id="data" class="row">
<div id='back' class="col s1">
<a id="back_button" href="#" target="_self">Back</a>
</div>
</div>
<div id='loading'>
Loading... please wait.
</div>
<div id='element_not_found' style="display:none;color:red;background-color:#FFECE8;font-weight: 500;">
Error finding URL. The original comment was probably deleted.
</div>
<div id='archived' class="row" style="display:none">
<div class="s15t8fxx-5 gdaRtq">
<div class="s15t8fxx-1 cynRVh"></div>
<div class="s15t8fxx-0 giTFAC">
<i class="icon icon-archived _2trXhUAJMhIhxp8a2zvOVP s7xll5k-4 htBfCv">
<span class="i729lw-0 ebGXPK"></span>
</i>
</div>
<div class="s15t8fxx-3 gZuIWP">
<div class="s15t8fxx-4 dTNJWj">This thread is archived</div>
<div class="s15t8fxx-2 dRQvyL">New comments cannot be posted and votes cannot be cast</div>
</div>
</div>
</div>
<div id='post' class='row'></div>
<form id="reply_post" class="row"></form>
<div id="status" class="row"></div>
<div class="s1rikhqd-6 bCecKY">
<div class="s10usnt7-0 gxtxxZ">
<ul id="comments"></ul>
</div>
</div>
<div id='no_results' class="row" style="display:none">
No comments for this post. Would you like to make one?
</div>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="js/libraries/react.development.js" crossorigin></script>
<script src="js/libraries/react-dom.development.js" crossorigin></script>
<script src="js/react-components/subreddit.js"></script>
<script src="js/react-components/content_age.js"></script>
<script src="js/react-components/username.js"></script>
<script src="js/react-components/dropdown_menu.js"></script>
<script src="js/react-components/find_my_link_button.js"></script>
<script src="js/react-components/open_in_reddit_button.js"></script>
<script src="js/react-components/remove_button.js"></script>
<script src="js/react-components/save_button.js"></script>
<script src="js/react-components/share_button.js"></script>
<script src="js/react-components/vote.js"></script>
<script src="js/react-components/content.js"></script>
<script src="js/react-components/comment.js"></script>
<script src="js/react-components/submission_expand.js"></script>
<script src="comment.js"></script>
</body>
</html>