Skip to content

Instantly share code, notes, and snippets.

@thomasjmwb
Created February 2, 2012 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasjmwb/1722502 to your computer and use it in GitHub Desktop.
Save thomasjmwb/1722502 to your computer and use it in GitHub Desktop.
moretest
function loadScript() {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://maps.googleapis.com/maps/api/js?sensor=false&callback=initialize";
document.body.appendChild(script);
}
function initialize() {
//$('#startScreen > div').toggle();
$('#mainScreen > div').toggle();//start off
createMainScreenElements();
addKeyDowns();
addAutoCompleting();
//remakeMapSize();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment