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