-
Notifications
You must be signed in to change notification settings - Fork 13
/
modal.html
90 lines (81 loc) · 3.62 KB
/
modal.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
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hootsuite Sample App</title>
<script src="https://assets.hootsuite.com/jsapi/4-0/hsp.js"></script>
<script src="./assets/util.js"></script>
<script src="./assets/modal.js"></script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<script src="https://apis.google.com/js/platform.js" defer></script>
<meta name="google-signin-client_id" content="YOUR-CLIENT-ID-HERE">
<link rel="stylesheet" type="text/css" href="./assets/style.css">
<link rel="stylesheet" type="text/css" href="https://d2l6uygi1pgnys.cloudfront.net/jsapi/2-0/assets/css/ad_default.css">
</head>
<body style="background: white; display: flex; flex-flow: column; height: 100%">
<div class="hs_topBar">
<div class="hs_topBarContent">
<!--Right-Side Controls-->
<ul class="hs_topBarControls">
<li class="hs_topBarControlsBtn" data-dropdown="MenuList" title="More">
<span class="icon-app-dir x-ellipsis"></span>
</li>
</ul>
<!--Left-Side Title-->
<h1 class="hs_topBarTitle">Hootsuite Component Sample</h1>
</div>
<!--Menu List-->
<ul class="hs_topBarDropdown hs_dropdownMenuList active" data-dropdown="MenuList" style="display: none;">
<li class="hs_dropdownMenuListItem"><a class="hs_loggedIn" target="_blank">Not logged in</a></li>
<li class="hs_dropdownMenuListItem"><a target="_blank" href="https://hootsuite.com/help">Help</a></li>
<li class="hs_dropdownMenuListItem"><a target="_blank" href="https://feedback.hootsuite.com/discussions">Feedback</a></li>
<li class="hs_dropdownMenuListItem"><a target="_blank" href="https://github.com/">Developer</a></li>
<li class="hs_dropdownMenuListItem"><a target="_blank" href="https://hootsuite.s3.amazonaws.com/jsapi/1-0/app_stream_template.html">Hootsuite CSS theme for apps</a></li>
<li class="hs_dropdownMenuListItem hs_logout" style="display:none"><a>Logout</a></li>
<div class="g-signin2" data-onsuccess="onSignIn" data-prompt="select_account"></div>
</ul>
</div>
<div class="hs_message">
<div class="hs_avatar">
<img class="hs_avatarImage" src="" alt="Avatar">
</div>
<div class="hs_content">
<a href="#" class="hs_userName" target="_blank" title="Username"></a>
<a href="#" class="hs_postTime" target="_blank" title=""></a>
<div class="hs_contentText">
<p>
<span class="hs_postBody"></span>
</p>
<ul class="hs_metrics">
<li class="hs_metricsItem">
<a href="#" class="hs_likesCount"></a>
<span title="Likes" class="icon-app-dir x-heart"></span>
</li>
<li class="hs_metricsItem">
<a href="#" class="hs_commentsCount"></a>
<span title="Comments" class="icon-app-dir x-comment"></span>
</li>
<li class="hs_metricsItem">
<a href="#" class="hs_sharesCount"></a>
<span title="Shares" class="icon-app-dir x-retweet"></span>
</li>
</ul>
</div>
</div>
<button class="hs_btnCtaSml hs_btnTypeSubmit hs_showGeolocation">
showGeolocation()
</button>
<button class="hs_btnCtaSml hs_btnTypeCta hs_showJsonButton">
Show JSON Payload
</button>
<div class="error" style="display:none">
<p>Error: Missing Twitter Credentials</p>
</div>
<button class="hs_btnCtaSml hs_btnTypeCta hs_copyJsonButton" style="display: none">
Copy
</button>
</div>
<pre style="display: none" class="prettyprint hs_jsonDump">
</pre>
</body>
</html>