Skip to content

Instantly share code, notes, and snippets.

@christopherstyles
Created November 3, 2012 00:02
Show Gist options
  • Save christopherstyles/4005139 to your computer and use it in GitHub Desktop.
Save christopherstyles/4005139 to your computer and use it in GitHub Desktop.
((window, $, App, undefined_) ->
App.homePage =
initialize: ->
# exit if we're not on the correct page
return if !$(document.body).hasClass('pages-home-view')
@bindElements()
bindElements: ->
$('.bubble .button .text').vAlign()
setupMap: ->
options = {
zoom: 3,
center: new google.maps.LatLng(52, 23),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
new google.maps.Map document.getElementById('map'), options
) window, jQuery, window.App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment