mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
12 lines
337 B
HTML
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>
|