-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathprefs_keyboard_shortcuts.html
46 lines (39 loc) · 1.85 KB
/
prefs_keyboard_shortcuts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Keyboard shortcuts editor - Flix Plus</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/prefs.css" />
<script src='/forge/app_config.js'></script><script src='/forge/all.js'></script>
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/fplib.js"></script>
<script type="text/javascript" src="js/keyboard_shortcuts_info.js"></script>
<script type="text/javascript" src="js/shortcuts_editor.js"></script>
</head>
<body>
<div class="container">
<h3>Flix Plus Settings - Keyboard shortcuts</h3>
<br>
Press a key to set it as a shortcut; backspace to clear. Unsupported and duplicate keys will be ignored. Note that it is okay to reuse keys between posters/sections and the player. You can speed up load time for most pages and remove the borders by setting navigation keys to None. (See 'Clear navigation' button at bottom of page.)
<br>
<form id="shortcuts_editor_form">
<div class="row">
<div id="shortcuts" class="col-md-4"></div>
</div>
<button id="save">Save</button>
<button id="clearall">Clear All</button>
<button id="defaults">Restore defaults</button>
<button id="clearnavigation">Clear navigation</button>
</form>
<br>
</div><!-- /.container -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>