forked from madman-bob/Homestuck-POV-Cam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dbfcd22
commit 93ff5b8
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<script src="./options.js"></script> | ||
<link rel="stylesheet" type="text/css" href="./options.css" /> | ||
</head> | ||
<body> | ||
<fieldset> | ||
<legend>Auto-open pesterlogs:</legend> | ||
<input id="autoopenpesterlogyes" name="autoopenpesterlog" type="radio" value="yes" /> | ||
<label for="autoopenpesterlogyes">Open pesterlogs</label> | ||
<br /> | ||
<input id="autoopenpesterlogno" name="autoopenpesterlog" type="radio" value="no" /> | ||
<label for="autoopenpesterlogno">Leave pesterlogs closed</label> | ||
</fieldset> | ||
<fieldset> | ||
<legend>Use arrow keys for navigation:</legend> | ||
<input id="arrownavigationyes" name="arrownavigation" type="radio" value="yes" /> | ||
<label for="arrownavigationyes">Use left/right arrow to change page</label> | ||
<br /> | ||
<input id="arrownavigationno" name="arrownavigation" type="radio" value="no" /> | ||
<label for="arrownavigationno">Use mouse to click on links to change page</label> | ||
</fieldset> | ||
<fieldset> | ||
<legend>View pre-retcon pages:</legend> | ||
<input id="preretconyes" name="preretcon" type="radio" value="yes" /> | ||
<label for="preretconyes">View pre-retcon pages (changes back on hover)</label> | ||
<br /> | ||
<input id="preretconno" name="preretcon" type="radio" value="no" /> | ||
<label for="preretconno">View post-retcon pages only</label> | ||
</fieldset> | ||
<fieldset> | ||
<legend>Add controls to (most) flash pages:</legend> | ||
<input id="flashcontrolsyes" name="flashcontrols" type="radio" value="yes" /> | ||
<label for="flashcontrolsyes">Add controls</label> | ||
<br /> | ||
<input id="flashcontrolsno" name="flashcontrols" type="radio" value="no" /> | ||
<label for="flashcontrolsno">Leave as normal</label> | ||
</fieldset> | ||
<div id="footer"> | ||
<a href="./options.html" target="_blank">Full Options</a> | ||
</div> | ||
</body> | ||
</html> |