instantchat/public_html/js/client.js

10 lines
127 B
JavaScript
Raw Normal View History

2018-10-27 05:00:11 +02:00
// Initialization
function init() {
console.log("Init...");
}
// Run script after page is loaded
$(function() {
init();
});