instantchat/public_html/js/client.js
2018-10-27 05:00:11 +02:00

9 lines
127 B
JavaScript

// Initialization
function init() {
console.log("Init...");
}
// Run script after page is loaded
$(function() {
init();
});