-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmlr-console-markup.html
55 lines (55 loc) · 1.98 KB
/
fmlr-console-markup.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
<div id="fmlr-console" class="animated bounceInUp">
<div id="fmlr-console-title">
Familiar
<button class="fmlr-global selected">
<strong>Global</strong>
</button>
<button class="fmlr-local">
Local: <strong class="fmlr-id"></strong>
</button>
<div id="fmlr-console-close">⊝</div>
<div id="fmlr-console-open">⊕</div>
</div>
<div class="fmlr-global-console">
<ul>
<li>
<span>Total clicks</span>
<span id="fmlr-console-total-session-clicks" class="fmlr-console-update"></span>
</li>
<li>
<span>Decay threshold</span>
<span id="fmlr-console-decay-threshold" class="fmlr-console-update"></span>
</li>
<li>
<span>Number of strangers</span>
<span id="fmlr-console-num-strangers" class="fmlr-console-update"></span>
</li>
</ul>
<ul>
<li>
<span>Number of friends</span>
<span id="fmlr-console-num-friends" class="fmlr-console-update"></span>
</li>
<li>
<span>Number of family</span>
<span id="fmlr-console-num-family" class="fmlr-console-update"></span>
</li>
<li>
<span>Expiration date</span>
<span id="fmlr-console-expiration" class="fmlr-console-update"></span>
</li>
</ul>
</div>
<div class="fmlr-local-console fmlr-hide">
<div class="fmlr-console-container" style="text-align: center;">
<div>
<strong class="fmlr-id"></strong> has a familiarity level of <strong id="current-state"></strong> with <strong id="local-clicks"></strong> clicks
</div>
</div>
<div class="view-familiarity-level">
<button class="console-btn" id="set-stranger" state="stranger">Stranger</button>
<button class="console-btn" id="set-friend" state="friend">Friend</button>
<button class="console-btn" id="set-family" state="family">Family</button>
</div>
</div>
</div>