mirror of
https://github.com/konvajs/konva.git
synced 2025-04-29 04:26:38 +08:00
17 lines
424 B
HTML
17 lines
424 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css"href="base.css">
|
|
<script src="../dist/kinetic-core.js"></script>
|
|
<script src="unitTests.js"></script>
|
|
<script src="testMethods.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
var test = new Test();
|
|
test.run();
|
|
};
|
|
</script>
|
|
</head>
|
|
<body onmousedown="return false;"></body>
|
|
</html>
|