This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
executable file
·86 lines (67 loc) · 3.27 KB
/
index.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html>
<head>
<title>Marknote</title>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<!-- Code Themes. -->
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/styles/github.min.css">
<!--<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.1/styles/monokai.min.css">-->
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/style.css">
<!-- Scripts. -->
<script src="assets/components/platform/platform.js"></script>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="assets/js/lawnchair.js"></script>
<script src="http://cdn.craig.is/js/mousetrap/mousetrap.min.js"> </script>
<script src="assets/js/jquery.nearest.js"></script>
<script src="assets/js/jquery.blockUI.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.4/firebase.js"></script>
<script src="assets/js/underscore.js"></script>
<script src="assets/js/app.js"></script>
<!-- Polymer Imports. -->
<link rel="import" href="assets/components/polymer/polymer.html">
<link rel="import" href="assets/components/font-roboto/roboto.html">
<link rel="import" href="assets/components/core-icons/core-icons.html">
<link rel="import" href="assets/components/paper-fab/paper-fab.html">
<link rel="import" href="assets/components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="assets/components/paper-fab/paper-fab.html">
<!-- Custom Elements. -->
<link rel="import" href="assets/elements/list-item.html">
</head>
<body unresolved touch-action="auto">
<div style='position: fixed; bottom: 25px; left:135px; z-index: 5;'><paper-fab id="newNote" icon="create" class="blue mini"></paper-fab></div>
<div id="list">
</div>
<div id="note">
<div id="display">
</div>
<div id="edit">
</div>
</div>
<script src="assets/js/ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
editor = ace.edit("edit");
editor.setTheme("ace/theme/github");
editor.getSession().setMode("ace/mode/markdown");
editor.setShowPrintMargin(false);
editor.getSession().setUseWrapMode(true);
</script>
<div id="actions">
<paper-icon-button icon="content-copy"></paper-icon-button><paper-icon-button icon="close"></paper-icon-button><paper-icon-button icon="menu"></paper-icon-button>
</div>
<div id="pageflip">
</div>
<div id="find">
<input class="mousetrap" type="text" id="findtext">
</div>
<div id="settings" style="display:none; padding:10px; text-align:left; border:none;">
<h3>Settings</h3><br>
Editor word wrap <input id="wrap" type="checkbox"><br>
Syncing <input id="syncing" type="checkbox"><br>
<input type="text" id="username" placeholder="Email:" ><br>
<input type="password" id="password" placeholder="Password:" style="margin-top:10px;"><br>
<button type="button" id="saveButton" class="btn btn-info btn-xs" style="margin-top:10px;">Save</button>
</div>
</body>
</html>