mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
define({
|
|
addToDom: function () {
|
|
var div = document.createElement('div');
|
|
div.id = 'two';
|
|
div.setAttribute('data-name', 'two');
|
|
document.getElementsByTagName('body')[0].appendChild(div);
|
|
}
|
|
});
|