To ensure these work locally over the file:/// protocol, simply use https instead. Straighten out inconsistencies in the markup (closing slash). Made to match the test/index.html file. Also: * index-mobile.html: Re-use jQuery object instead of executing the same query three times. * test: Remove unused qunit-fixture element.
36 lines
927 B
HTML
36 lines
927 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery ULS Test Suite</title>
|
|
|
|
<!-- External libs -->
|
|
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
|
|
<!-- Source of our libs -->
|
|
<script src="../src/jquery.uls.data.js"></script>
|
|
<script src="../src/jquery.uls.data.utils.js"></script>
|
|
<script src="../src/jquery.uls.lcd.js"></script>
|
|
<script src="../src/jquery.uls.languagefilter.js"></script>
|
|
<script src="../src/jquery.uls.regionfilter.js"></script>
|
|
<script src="../src/jquery.uls.core.js"></script>
|
|
|
|
<!-- Test framework -->
|
|
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.14.0.css">
|
|
<script src="https://code.jquery.com/qunit/qunit-1.14.0.js"></script>
|
|
|
|
<!-- Test config -->
|
|
<script>
|
|
QUnit.config.requireExpects = true;
|
|
</script>
|
|
|
|
<!-- Test Suite -->
|
|
<script src="jquery.uls.test.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
</body>
|
|
</html>
|
|
|