haste-server/static/index.html

69 lines
1.9 KiB
HTML
Raw Normal View History

2011-11-18 04:44:48 +01:00
<html>
<head>
2011-11-23 23:09:12 +01:00
<title>hastebin</title>
2011-11-18 04:44:48 +01:00
<link rel="stylesheet" type="text/css" href="solarized_dark.css"/>
2011-11-18 23:23:23 +01:00
<link rel="stylesheet" type="text/css" href="application.css"/>
2011-11-18 04:44:48 +01:00
2012-02-07 23:52:48 +01:00
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
2011-11-18 04:44:48 +01:00
<script type="text/javascript" src="highlight.min.js"></script>
2011-11-27 21:49:17 +01:00
<script type="text/javascript" src="application.min.js"></script>
2011-11-18 04:44:48 +01:00
2011-11-23 02:01:09 +01:00
<meta name="robots" content="noindex,nofollow"/>
2011-11-18 16:17:41 +01:00
<script type="text/javascript">
2011-11-21 15:56:33 +01:00
var app = null;
// Handle pops
var handlePop = function(evt) {
var path = evt.target.location.pathname;
2011-11-28 07:27:41 +01:00
if (path === '/') { app.newDocument(true); }
else { app.loadDocument(path.substring(1, path.length)); }
2011-11-21 15:56:33 +01:00
};
2011-11-28 07:27:41 +01: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 16:17:41 +01:00
$(function() {
2011-11-23 23:09:12 +01:00
app = new haste('hastebin', { twitter: true });
2011-11-21 15:56:33 +01:00
handlePop({ target: window });
2011-11-18 16:17:41 +01:00
});
</script>
2011-11-18 04:44:48 +01:00
</head>
<body>
2011-12-19 18:44:12 +01:00
<ul id="messages"></ul>
2011-11-18 04:44:48 +01:00
2011-11-23 17:31:50 +01:00
<div id="key">
2011-11-28 15:39:31 +01:00
<div id="pointer" style="display:none;"></div>
2011-11-28 15:56:06 +01:00
<div id="box1">
2011-11-28 05:41:18 +01:00
<a href="/about.md" class="logo"></a>
2011-11-23 17:31:50 +01:00
</div>
2011-11-28 15:56:06 +01:00
<div id="box2">
2011-11-23 18:12:01 +01:00
<div class="save function"></div>
<div class="new function"></div>
<div class="duplicate function"></div>
2012-01-11 05:06:44 +01:00
<div class="raw function"></div>
2011-11-23 18:12:01 +01:00
<div class="twitter function"></div>
2011-11-23 17:31:50 +01:00
</div>
2011-11-28 15:56:06 +01:00
<div id="box3" style="display:none;">
2011-11-23 17:31:50 +01:00
<div class="label"></div>
<div class="shortcut"></div>
</div>
</div>
<div id="linenos"></div>
2011-11-21 15:56:33 +01:00
<pre id="box" style="display:none;" tabindex="0"><code></code></pre>
2011-11-18 16:17:41 +01:00
<textarea spellcheck="false" style="display:none;"></textarea>
2011-11-18 04:44:48 +01:00
</body>
</html>