pulsar/index.html
Nathan Sobo 5198a88cce Half-baked: Have a lines reasonably looking cursor working.
A bunch of tests are failing but you can load a buffer and display its
lines.
2012-01-16 22:11:38 -08:00

28 lines
604 B
HTML

<html>
<head>
<link rel="stylesheet" type="text/css" src="static/reset.css">
<script src='src/stdlib/require.js'></script>
<script>
window.measure = function(name) {
var start = new Date().getTime();
return {stop: function() {
var end = new Date().getTime();
var total = (end - start) / 1000;
while(name.length < 40) {
name = name + " "
}
console.log(name + (end - start) / 1000);
}}
}
window.onload = function() {
require($bootstrapScript);
}
</script>
</head>
<body>
</body>
</html>