use english spelling: replace costumStart with customStart.

This commit is contained in:
elijah 2012-02-04 15:22:25 -08:00
parent 82bda0b0ab
commit 17e9cf71da
4 changed files with 8 additions and 8 deletions

View file

@ -414,8 +414,8 @@ var pad = {
$(document).ready(function()
{
//start the costum js
if(typeof costumStart == "function") costumStart();
// start the custom js
if (typeof customStart == "function") customStart();
getParams();
handshake();
});

View file

@ -65,8 +65,8 @@ var socket, token, padId, export_links;
function init() {
$(document).ready(function ()
{
//start the costum js
if(typeof costumStart == "function") costumStart();
// start the custom js
if (typeof customStart == "function") customStart();
//get the padId out of the url
var urlParts= document.location.pathname.split("/");