-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathssb.html
More file actions
25 lines (25 loc) · 921 Bytes
/
ssb.html
File metadata and controls
25 lines (25 loc) · 921 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FireSSB | Helper</title>
<link rel="stylesheet" href="./css/guide.css">
<style>
body:not([permission-requested]){
& .permission-requested {
display: none;
}
}
</style>
</head>
<body>
<script src="js/ssb.js"></script>
<div class="permission-requested">
<h1>Enable popups for alternative mode.</h1>
<p>Since popups is part of an web api, alternative mode is requiring popup permission to create windows.</p>
<p>This permission is essential for alternative mode. If you don't want to give permission, you can still use classic mode.</p>
<a href="guide.html#alternative-mode" target="_blank"><p>Learn more about alternative mode</p></a>
</div>
</body>
</html>