systemjs/test/test-advanced.html
2013-11-03 19:05:27 +02:00

12 lines
337 B
HTML

<!doctype html>
<html>
<script src="../../es6-module-loader/lib/es6-module-loader.js"></script>
<script src="../loader.js"></script>
<script>
var startTime = Date.now();
jspm.import('github:jquery/jquery@master/jquery', function($) {
document.body.innerHTML += 'Loaded in ' + (Date.now() - startTime) + 'ms.';
});
</script>