mirror of
https://github.com/thedjinn/js303.git
synced 2025-08-17 15:58:13 +02:00
31 lines
854 B
HTML
31 lines
854 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>QUnit Example</title>
|
|
<link rel="stylesheet" href="resources/qunit.css">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<script src="resources/handlebars-1.3.0.js"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
// Hacks for browser-based ember-template-compiler inclusion.
|
|
// Necessary because ember-template-compiler uses `exports`.
|
|
window.exports = {};
|
|
</script>
|
|
<script src="resources/ember-template-compiler.js"></script>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var EmberHandlebars = window.exports.EmberHandlebars;
|
|
|
|
// Need this or else QUnit will flip.
|
|
delete window.exports;
|
|
</script>
|
|
|
|
<script src="../dist/emblem.js"></script>
|
|
<script src="resources/qunit.js"></script>
|
|
<script src="qunit_spec.js"></script>
|
|
</body>
|
|
</html>
|
|
|