This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Fill in the blanks :) | |
var map = new google.maps.Map(), | |
tileListener = google.maps.event.addListener(map,'tilesloaded',fixMyPageOnce); | |
function fixMyPageOnce(){ | |
//immediately remove the listener (or this thing fires for every tile that gets loaded, which is a lot when you start to pan) | |
google.maps.event.removeListener(tileListener); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//in reply to http://twitter.com/#!/scott_gonzalez/status/74191962739183616 | |
//http://bit.ly/jpf1mB | |
var s = document.getElementsByTagName('select')[0]; | |
s.style.height = "auto"; | |
s.style.height = ""; |
NewerOlder