1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 03:21:21 +00:00
haste-server/static/index.html

49 lines
1 KiB
HTML
Raw Normal View History

2011-11-18 03:44:48 +00:00
<html>
<head>
2011-11-18 22:23:23 +00:00
<title>haste</title>
2011-11-18 03:44:48 +00:00
<link rel="stylesheet" type="text/css" href="solarized_dark.css"/>
2011-11-18 22:23:23 +00:00
<link rel="stylesheet" type="text/css" href="application.css"/>
2011-11-18 03:44:48 +00:00
2011-11-18 03:47:43 +00:00
<script type="text/javascript" src="jquery-1.7.min.js"></script>
2011-11-18 03:44:48 +00:00
<script type="text/javascript" src="highlight.min.js"></script>
<script type="text/javascript" src="application.js"></script>
2011-11-18 15:17:41 +00:00
<script type="text/javascript">
$(function() {
2011-11-18 21:22:00 +00:00
// Set up
2011-11-18 22:23:23 +00:00
var app = new haste('haste');
2011-11-18 15:49:00 +00:00
$('textarea').focus();
2011-11-18 21:22:00 +00:00
// Handle pops
window.onpopstate = function(evt) {
var path = evt.target.location.pathname;
if (path === '/') {
2011-11-18 21:37:18 +00:00
app.newDocument(true);
2011-11-18 21:22:00 +00:00
}
else {
app.loadDocument(path.substring(1, path.length));
}
};
2011-11-18 15:17:41 +00:00
});
</script>
2011-11-18 03:44:48 +00:00
</head>
<body>
2011-11-18 23:17:49 +00:00
<div id="key">
<em>haste</em>
^s - save<br>
^n - new<br>
^d - duplicate
</div>
2011-11-18 03:44:48 +00:00
<pre id="box" style="display:none;"><code></code></pre>
2011-11-18 15:17:41 +00:00
<textarea spellcheck="false" style="display:none;"></textarea>
2011-11-18 03:44:48 +00:00
</body>
</html>