20 lines
423 B
HTML
20 lines
423 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
var custom$ = function() {};
|
|
window.$ = custom$;
|
|
</script>
|
|
<script src="../OLLoader.js"></script>
|
|
<script src="../../lib/deprecated.js"></script>
|
|
<script>
|
|
|
|
function test_$(t) {
|
|
t.plan(1);
|
|
t.ok($ === custom$, "OpenLayers doesn't clobber existing definition of $.");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |