Created
November 3, 2012 00:02
-
-
Save christopherstyles/4005139 to your computer and use it in GitHub Desktop.
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
| ((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