mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-02 15:08:42 +00:00
22 lines
No EOL
443 B
HTML
22 lines
No EOL
443 B
HTML
<html>
|
|
<head>
|
|
<title>USING WITH REQUIRE</title>
|
|
|
|
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
|
|
<script type="text/javascript" src="../deps/require.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
|
//minimal example using requirejs
|
|
require.config({
|
|
baseUrl : "../"
|
|
});
|
|
require(["Tone/core/Tone", "Tone/effects/PingPongDelay"], function(Tone, PingPongDelay){
|
|
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html> |