ember-gettext
Version:
i18n gettext.js wrapper for Ember controllers and Handlebars templates
28 lines (27 loc) • 977 B
HTML
<html>
<head>
<meta charset="utf-8">
<script src="../vendor/jquery-2.0.3.js"></script>
<script src="../vendor/handlebars-1.3.0.js"></script>
<script src="../vendor/ember-release.js"></script>
<script src="../bower_components/gettext.js/dist/gettext.js"></script>
<script src="../lib/ember-gettext.js"></script>
<link rel="stylesheet" href="../node_modules/mocha-phantomjs/node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/expect.js/index.js"></script>
<script src="../node_modules/mocha-phantomjs/node_modules/mocha/mocha.js"></script>
<script>
mocha.ui('bdd');
mocha.reporter('html');
</script>
<script src="./utils.js"></script>
<script src="./controllerSpec.js"></script>
<script src="./templateSpec.js"></script>
<script>
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
else { mocha.run(); }
</script>
</body>
</html>