mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
9 lines
275 B
HTML
9 lines
275 B
HTML
<!doctype html>
|
|
<html>
|
|
<script src="https://jspm.io/loader.js"></script>
|
|
<script>
|
|
var startTime = Date.now();
|
|
jspm.import('github:components/jquery@2.0.3/jquery', function($) {
|
|
document.body.innerHTML = 'Loaded in ' + (Date.now() - startTime) + 'ms.';
|
|
});
|
|
</script> |