haste-server/static/index.html

66 lines
1.8 KiB
HTML
Raw Normal View History

2011-11-18 11:44:48 +08:00
<html>
<head>
2011-11-24 06:09:12 +08:00
<title>hastebin</title>
2011-11-18 11:44:48 +08:00
<link rel="stylesheet" type="text/css" href="solarized_dark.css"/>
2011-11-19 06:23:23 +08:00
<link rel="stylesheet" type="text/css" href="application.css"/>
2011-11-18 11:44:48 +08:00
2011-11-24 01:28:08 +08:00
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
2011-11-18 11:44:48 +08:00
<script type="text/javascript" src="highlight.min.js"></script>
2011-11-28 04:49:17 +08:00
<script type="text/javascript" src="application.min.js"></script>
2011-11-18 11:44:48 +08:00
2011-11-23 09:01:09 +08:00
<meta name="robots" content="noindex,nofollow"/>
2011-11-18 23:17:41 +08:00
<script type="text/javascript">
2011-11-21 22:56:33 +08:00
var app = null;
// Handle pops
var handlePop = function(evt) {
var path = evt.target.location.pathname;
2011-11-28 14:27:41 +08:00
if (path === '/') { app.newDocument(true); }
else { app.loadDocument(path.substring(1, path.length)); }
2011-11-21 22:56:33 +08:00
};
2011-11-28 14:27:41 +08:00
// Set up the pop state to handle loads, skipping the first load
// to make chrome behave like others:
// http://code.google.com/p/chromium/issues/detail?id=63040
setTimeout(function() {
window.onpopstate = function(evt) {
try { handlePop(evt); } catch(err) { /* not loaded yet */ }
};
}, 1000);
// Construct app and load initial path
2011-11-18 23:17:41 +08:00
$(function() {
2011-11-24 06:09:12 +08:00
app = new haste('hastebin', { twitter: true });
2011-11-21 22:56:33 +08:00
handlePop({ target: window });
2011-11-18 23:17:41 +08:00
});
</script>
2011-11-18 11:44:48 +08:00
</head>
<body>
2011-11-24 00:31:50 +08:00
<div id="key">
2011-11-28 22:39:31 +08:00
<div id="pointer" style="display:none;"></div>
2011-11-28 22:56:06 +08:00
<div id="box1">
2011-11-28 12:41:18 +08:00
<a href="/about.md" class="logo"></a>
2011-11-24 00:31:50 +08:00
</div>
2011-11-28 22:56:06 +08:00
<div id="box2">
2011-11-24 01:12:01 +08:00
<div class="save function"></div>
<div class="new function"></div>
<div class="duplicate function"></div>
<div class="twitter function"></div>
2011-11-24 00:31:50 +08:00
</div>
2011-11-28 22:56:06 +08:00
<div id="box3" style="display:none;">
2011-11-24 00:31:50 +08:00
<div class="label"></div>
<div class="shortcut"></div>
</div>
</div>
2011-11-21 22:56:33 +08:00
<pre id="box" style="display:none;" tabindex="0"><code></code></pre>
2011-11-18 23:17:41 +08:00
<textarea spellcheck="false" style="display:none;"></textarea>
2011-11-18 11:44:48 +08:00
</body>
</html>