Files
ace/ipad.html
2011-02-02 12:39:35 +01:00

63 lines
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="user-scalable=no, width=device-width">
<meta name="author" content="Fabian Jakobs">
<title>Ace on iPad</title>
<link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'>
<style type="text/css" media="screen">
body {
overflow: hidden;
}
#editor {
margin: 0;
position: absolute;
font-family: 'Droid Sans Mono';
font-size: 14px;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-user-select: none;
}
</style>
</head>
<body>
<div id="editor">
</div>
<script src="demo/require.js" type="text/javascript" charset="utf-8"></script>
<script>
require({
paths: {
demo: "../demo",
ace: "../lib/ace",
pilot: "../support/pilot/lib/pilot"
}
});
require(["demo/ipad"], function(demo) {
var text = 'function foo(items) {\n\
for (var i=0; i<items.length; i++) {\n\
alert(items[i] + "juhu");\n\
}\n\
}';
for (var i=0; i<500; i++)
text += "\njuhu " + i;
demo.launch("editor", text);
});
</script>
</body>
</html>