2018-05-20 07:04:11 +00:00
|
|
|
<!DOCTYPE html>
|
- Linting (HTML): Use double-quotes for attributes, remove redundant `type=text/css`,
indent/lbs, consistent non-use of HTML namespace, consistent indents, consistent charset
casing
- Linting (Markdown): Add `.remarkrc`, use proper hierarchical headings, use consistent
heading format, trailing spaces
- `composer.json`: consistent property spacing
- License: Add `.txt` extension, update copyright date, and reflect type (MIT) in file name
- Credits: Add self
- npm: Add `package.json` (version 3.0.0-alpha.1 for npm release only; just reserving name)
2018-05-13 01:58:13 +00:00
|
|
|
<html>
|
2010-09-20 18:55:10 +00:00
|
|
|
<head>
|
2018-05-18 04:02:30 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Embed API</title>
|
2018-05-18 03:25:45 +00:00
|
|
|
<link rel="icon" type="image/png" href="images/logo.png"/>
|
|
|
|
<script src="jquery.min.js"></script>
|
|
|
|
<script type="module" src="embedapi-dom.js"></script>
|
2013-10-13 23:59:32 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-05-18 04:02:30 +00:00
|
|
|
<button id="load">Load example</button>
|
|
|
|
<button id="save">Save data</button>
|
|
|
|
<button id="exportPNG">Export data to PNG</button>
|
|
|
|
<button id="exportPDF">Export data to PDF</button>
|
|
|
|
<br/>
|
2010-09-20 18:55:10 +00:00
|
|
|
</body>
|
|
|
|
</html>
|