use english spelling: replace costumStart with customStart.
This commit is contained in:
parent
82bda0b0ab
commit
17e9cf71da
|
@ -1,6 +1,6 @@
|
||||||
function costumStart()
|
function customStart()
|
||||||
{
|
{
|
||||||
//define your javascript here
|
//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/
|
//you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,8 +148,8 @@
|
||||||
return randomstring;
|
return randomstring;
|
||||||
}
|
}
|
||||||
|
|
||||||
//start the costum js
|
// start the custom js
|
||||||
if(typeof costumStart == "function") costumStart();
|
if (typeof customStart == "function") customStart();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -414,8 +414,8 @@ var pad = {
|
||||||
|
|
||||||
$(document).ready(function()
|
$(document).ready(function()
|
||||||
{
|
{
|
||||||
//start the costum js
|
// start the custom js
|
||||||
if(typeof costumStart == "function") costumStart();
|
if (typeof customStart == "function") customStart();
|
||||||
getParams();
|
getParams();
|
||||||
handshake();
|
handshake();
|
||||||
});
|
});
|
||||||
|
|
|
@ -65,8 +65,8 @@ var socket, token, padId, export_links;
|
||||||
function init() {
|
function init() {
|
||||||
$(document).ready(function ()
|
$(document).ready(function ()
|
||||||
{
|
{
|
||||||
//start the costum js
|
// start the custom js
|
||||||
if(typeof costumStart == "function") costumStart();
|
if (typeof customStart == "function") customStart();
|
||||||
|
|
||||||
//get the padId out of the url
|
//get the padId out of the url
|
||||||
var urlParts= document.location.pathname.split("/");
|
var urlParts= document.location.pathname.split("/");
|
||||||
|
|
Loading…
Reference in New Issue