Files

6 lines
140 B
JavaScript
Raw Permalink Normal View History

2017-05-21 18:20:01 -06:00
(function (window, document) {
window.doStuff = function () {
document.body.innerHTML = 'Stuff has been done';
};
})(window, document);