mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
26 lines
590 B
HTML
26 lines
590 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script src="https://jspm.io/loader.js"></script>
|
|
<script>
|
|
jspm.config({
|
|
locations: {
|
|
kickstrap: 'https://github.jspm.io/guybedford/kickstrap-proto@master'
|
|
}
|
|
});
|
|
|
|
jspm.import(['jspm:jquery', 'kickstrap:select2'], function($) {
|
|
document.body.className = '';
|
|
$('#e1').select2();
|
|
});
|
|
</script>
|
|
<style>
|
|
body.hidden {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<body class='hidden'>
|
|
<select id="e1">
|
|
<option value="AL">Alabama</option>
|
|
<option value="WY">Wyoming</option>
|
|
</select>
|
|
</body> |