Merge pull request #400 from elijh/master

minor spelling fix
This commit is contained in:
John McLear 2012-02-05 06:25:42 -08:00
commit 8ade4c89d5
4 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
function costumStart()
function customStart()
{
//define your javascript here
//jquery is avaiable - except index.js
//jquery is available - except index.js
//you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
}

View File

@ -148,8 +148,8 @@
return randomstring;
}
//start the costum js
if(typeof costumStart == "function") costumStart();
// start the custom js
if (typeof customStart == "function") customStart();
</script>
</html>

View File

@ -422,8 +422,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("/");