diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-05-06 20:41:51 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-05-06 20:41:51 -0700 |
| commit | 5b54612d91129afb92aee01e14984e7e2e401709 (patch) | |
| tree | e402fa98b02ddad2482fd6491c2b9b6915048a5c /ext/mac-ui-macgap1-wrapper/public/index.html | |
| parent | e58047eaa020e2810dd20ce6cc2eac32de071481 (diff) | |
| download | infinitytier-5b54612d91129afb92aee01e14984e7e2e401709.tar.gz infinitytier-5b54612d91129afb92aee01e14984e7e2e401709.zip | |
Pass authtoken in from user, and add a wrapper for web UI on Mac.
Diffstat (limited to 'ext/mac-ui-macgap1-wrapper/public/index.html')
| -rw-r--r-- | ext/mac-ui-macgap1-wrapper/public/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ext/mac-ui-macgap1-wrapper/public/index.html b/ext/mac-ui-macgap1-wrapper/public/index.html new file mode 100644 index 00000000..9fab9325 --- /dev/null +++ b/ext/mac-ui-macgap1-wrapper/public/index.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> + <title>MacGap</title> + <style type="text/css" media="screen"> + html, body { + height: 100%; + width: 100%; + background: #FFF; + padding: 0; + margin: 0; + overflow: hidden; + -webkit-user-select: none; + } + + h1 { + color: #E0E0E0; + margin: 18% 0; + text-align: center; + font-family: helvetica; + } + </style> + +</head> +<body> + + <script type="text/javascript" charset="utf-8"> + macgap.notice.notify({title: 'MacGap', content: 'Hello World'}); + </script> + + <h1>MacGap</h1> +</body> +</html>
\ No newline at end of file |
