mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
6231b161b9
It appears that we must load require.js via a standard script tag in order for it to work properly in IE8.
21 lines
444 B
HTML
21 lines
444 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Progressbar Test Suite</title>
|
|
|
|
<script src="../../../external/requirejs/require.js"></script>
|
|
<script src="../../lib/css.js" data-modules="core progressbar"></script>
|
|
<script src="../../lib/bootstrap.js" data-widget="progressbar"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture">
|
|
|
|
<div id="progressbar"></div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|