Update README; add LICENSE
This commit is contained in:
parent
68fc74edd5
commit
e902a8074a
15 changed files with 153 additions and 3 deletions
|
|
@ -1,3 +1,11 @@
|
|||
/**
|
||||
* Copyright 2013 Calvin 'calzoneman' Montgomery
|
||||
*
|
||||
* Licensed under Creative Commons Attribution-NonCommercial 3.0
|
||||
* See http://creativecommons.org/licenses/by-nc/3.0/
|
||||
*
|
||||
*/
|
||||
|
||||
// Wrapped in a function so I can ensure that the socket
|
||||
// is defined before these statements are run
|
||||
function initCallbacks() {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
/**
|
||||
* Copyright 2013 Calvin 'calzoneman' Montgomery
|
||||
*
|
||||
* Licensed under Creative Commons Attribution-NonCommercial 3.0
|
||||
* See http://creativecommons.org/licenses/by-nc/3.0/
|
||||
*
|
||||
*/
|
||||
|
||||
const IO_URL = "http://somewebsite:1337";
|
||||
const SYNC_THRESHOLD = 2;
|
||||
var LEADER = false;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
/**
|
||||
* Copyright 2013 Calvin 'calzoneman' Montgomery
|
||||
*
|
||||
* Licensed under Creative Commons Attribution-NonCommercial 3.0
|
||||
* See http://creativecommons.org/licenses/by-nc/3.0/
|
||||
*
|
||||
*/
|
||||
|
||||
// Adds a user to the chatbox userlist
|
||||
function addUser(name, rank, leader) {
|
||||
var div = document.createElement('div');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue