oxjs/demos/examplepanel/index.html

31 lines
No EOL
1 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>OxJS ExamplePanel Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="../../dev/Ox.js"></script>
<script>
Ox.load('UI', function() {
///*
Ox.ExamplePanel({
examples: ['cities'],
path: Ox.PATH + '../examples/',
replace: [[/\b(Ox[\.\w]+)\b/g, '<b>$1</b>']]
})
.appendTo(Ox.$body);
//*/
/*
Ox.ExamplePage({
height: window.innerHeight,
html: Ox.PATH + '../examples/cities/index.html',
js: Ox.PATH + '../examples/cities/js/example.js',
title: 'Cities',
width: window.innerWidth
})
.appendTo(Ox.$body);
*/
});
</script>
</head>
<body></body>
</html>