mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
11 lines
275 B
HTML
11 lines
275 B
HTML
<!doctype html>
|
|
<html>
|
|
<script src="https://jspm.io/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>
|