removed view tests

This commit is contained in:
logsol 2012-07-13 13:01:12 +02:00
parent dd71bf79a9
commit 1a535035b5
2 changed files with 0 additions and 37 deletions

View file

@ -1,28 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Chuck</title>
<script data-main="view" src="node_modules/requirejs/require.js"></script>
<style>
html, body {
margin: 0;
padding: 0;
display: table;
width: 100%;
height: 100%;
background: #000;
}
#container {
text-align: center;
display: table-cell;
vertical-align: middle;
height: 100%;
}
canvas {
background: #333;
}
</style>
</head>
<body>
</body>
</html>

View file

@ -1,9 +0,0 @@
requirejs.config({
baseUrl: 'lib'
});
var inspector = {};
requirejs(["Chuck/View/View"], function(View) {
var view = new View();
});