-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (19 loc) · 879 Bytes
/
index.html
File metadata and controls
22 lines (19 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="dist/settle.acceptance.min.js"></script>
<title>settle.acceptance.js</title>
</head>
<body>
<div class="settle-acceptance" data-shortlink-id="foo" data-shortlink-argstring="bar" data-alternate="true" data-settle-lang="no"></div>
<div class="settle-acceptance" data-shortlink-id="moo" data-shortlink-argstring="far" data-alternate="false" data-settle-lang="en"></div>
<div class="settle-acceptance" data-shortlink-id="boo" data-alternate="true"></div>
<div class="settle-acceptance" data-shortlink-id="doo" data-alternate="true" data-shortlink-prefix="q"></div>
<script>
// With jquery installed use -> $(document).ready(Settle.displayQRorButton);
Settle.displayQRorButton();
</script>
</body>
</html>