- adjusted display, changed thumbnails, then set the thumbnail height to auto and reset all images.
- image header
- person pages
- speed up animation and make sure it waits after page loads ?
- mobile not done 😦
- person landing, add fade to hover animation ?
- thought landing
- thought page
- confirmed an rgba background on the overlay works well.
- lots of refactoring on the people section, and other mobile issues.
- not checking form functionality right now
- setup images to swap with map toggle, kinda fixed the map loading issue with an interval, feels like cheating but seems to work.
if (typeof google !== 'undefined') {
this.initMap()
} else {
this.mapCheck = setInterval(() => {
if (typeof google !== 'undefined') {
this.initMap()
clearInterval(this.mapCheck)
}
}, 1000)
}