This repository was archived by the owner on Jan 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathcustom_resources.html
More file actions
37 lines (32 loc) · 1.4 KB
/
custom_resources.html
File metadata and controls
37 lines (32 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Those meta make the capture of handwriting inputs easier on mobile devices -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="HandheldFriendly" content="true"/>
<title>Get started</title>
<link rel="stylesheet" href="../examples.css">
<script src="../../../webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../../pepjs/dist/pep.min.js"></script>
<link rel="import" href="../../myscript-text-web.html">
<style>
.description {
margin: 12px;
}
</style>
</head>
<body>
<p class="description">Custom resources: <b>Dinosaurs</b>. Try to write some dinosaurs name!</p>
<myscript-text-web scheme="https"
host="webdemoapi.myscript.com"
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad"
touch-action="none"
customresources='["dinosaur"]'
nolktext>
</myscript-text-web>
</body>
</html>