-
Notifications
You must be signed in to change notification settings - Fork 0
/
note.html
41 lines (32 loc) · 1.36 KB
/
note.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Wunderlist - Note App</title>
<link type="text/css" rel="stylesheet" href="css/wunderlist.css"/>
<link type="text/css" rel="stylesheet" href="css/dialogs.css"/>
<script type="text/javascript" src="js/libraries/jquery-1.6.min.js"></script>
<script type="text/javascript" src="js/libraries/jquery.ui.1.8.10.min.js"></script>
<script type="text/javascript" src="js/libraries/shortcuts.js"></script>
<script type="text/javascript" src="js/notes/note.js"></script>
<script type="text/javascript" src="js/helpers/dialogs.js"></script>
</head>
<body>
<div class="dialog-notes">
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
<span class="ui-dialog-title" id="ui-dialog-title-1"></span>
</div>
<div class="notes_buffer">
<textarea id="noteTextarea"></textarea>
<div class="savednote">
<div id="noteText" class="inner"></div>
</div>
</div>
<div class="notes_buttons">
<span id="hint" class="hint"></span>
<input id="save" class="input-button button-login" type="submit" value="Save" />
<input id="delete" class="input-button destructive" type="submit" value="Delete" />
</div>
</div>
</body>
</html>