Merge branch 'master' of git://github.com/Pita/etherpad-lite into newDesignTest

This commit is contained in:
John McLear 2011-08-01 23:13:51 +01:00
commit 143369b387
7 changed files with 299 additions and 287 deletions

View file

@ -125,6 +125,6 @@
}
//start the costum js
if(costumStart) costumStart();
if(typeof costumStart == "function") costumStart();
</script>
</html>

View file

@ -30,7 +30,7 @@ $(document).ready(function()
}
//start the costum js
if(costumStart) costumStart();
if(typeof costumStart == "function") costumStart();
handshake();
});

View file

@ -58,7 +58,7 @@
$(document).ready(function ()
{
//start the costum js
if(costumStart) costumStart();
if(typeof costumStart == "function") costumStart();
//get the padId out of the url
var urlParts= document.location.pathname.split("/");