forked from bfreddit/bfreddit.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 4.1 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 4.1 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>/r/bravefrontier Flair Selector</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open Sans:300italic,400italic,600italic,700italic,400,300,600,700" type="text/css" media="all">
<link rel="stylesheet" href="style.css" type="text/css" media="all">
<link rel="stylesheet" href="flair.css" type="text/css" media="all">
<!-- JavaScript -->
<script>var flair = {};</script>
<script type="text/javascript" src="flair.js"></script>
<script type="text/javascript" src="scripts.js"></script>
</head>
<body>
<noscript>JavaScript is required to run this page.</noscript>
<div class="wrapper no-style no-margin">
<a id="help-link" href="#" onclick="n.toggleClass('#help-bubble', 'hide');return false">Need help or found a bug?</a>
</div>
<div id="help-bubble" class="wrapper no-margin hide">
<h3>Help Info</h3>
<p><b>Usage:</b> Click on a flair below, using either of the two filters to narrow your search. Optionally enter
a flair text in the field that says "Insert flair text here", this is the text that will appear when you hover
over your flair in the subreddit.</p>
<p>Once happy with your selection, click "Send Flair Request" which will open up a message form to /u/MimicBot,
do not change anything, just click send. You should receive a reply from the bot within several moments notifying
you that it has received your message and changed your flair.</p>
<p><b>Found a bug?</b><br/>
Please <a href="https://www.reddit.com/message/compose?to=%2Fr%2Fbravefrontier">message the moderators of /r/bravefrontier</a>
if you need additional help or found a problem / bug.</p>
</div>
<div class="wrapper">
<div id="flair-selection" class="center">
<div class="cf">
<div class="fl" style="margin-right:8px">
<div id="flair-selection-flair" class="flair"></div>
</div>
<div class="fl">
<div id="flair-selection-name">Name</div>
<input id="flair-selection-text" type="text" placeholder="Insert flair text here" />
<div class="spacer">
<button onclick="flair.sendChoice()" id="flair-select-submit">Send Flair Request</button>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper">
<div class="center spacer">
<h4>Select Subreddit(s):</h4>
</div>
<div id="subreddit-selection" class="center">
</div>
</div>
<div class="wrapper">
<div id="flair-filter" class="center" style="-webkit-justify-content:space-between;justify-content:space-between;">
<input id="flair-filter-text" type="text" placeholder="Filter by Unit Name or Flair ID"
onkeyup="flair.updateFilter(this.value)" onchange="flair.updateFilter(this.value)" />
<label for="flair-filter-sheet">
<span>Filter by category:</span>
<select id="flair-filter-sheet" onchange="flair.updateFlairFilter(this.value)">
<option value="ALL">All Units</option>
<option value="rslegacy">RS Units - Legacy Batches</option>
<option value="rs7star">RS Units - 7 Star Batches</option>
<option value="rsoe">RS Units - Omni Evo Batches</option>
<option value="freeall">Universal Non-RS Units</option>
<option value="gl">Global Exclusive Units 1</option>
<option value="gle">Global Exclusive Units 2</option>
<option value="jpeu">JP / EU Exclusive Units</option>
<option value="alt">Alternate Unit Arts</option>
</select>
</label>
</div>
<div id="flair-choices"></div>
</div>
</body>
</html>