mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
window.helloText = function() {
|
|
return 'Hello, World!';
|
|
};
|
|
|
|
window.hello = function() {
|
|
html = JST['app/templates/hello.us']({text: helloText()});
|
|
document.body.innerHTML += html;
|
|
};
|
|
|
|
if(window.addEventListener) {
|
|
window.addEventListener('DOMContentLoaded', hello, false);
|
|
} else {
|
|
window.attachEvent('onload', hello);
|
|
}
|