mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
20 lines
468 B
HTML
20 lines
468 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
var OpenLayers = {singleFile: true};
|
|
</script>
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
function test_OpenLayers(t) {
|
|
t.plan(1);
|
|
|
|
var script = document.getElementById("script");
|
|
|
|
t.eq(OpenLayers._getScriptLocation(), "../lib/", "Script location for single file build correctly detected.");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|