// jQuery
$(document).ready(function() {
// code
})
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<title>Google Maps Multiple Markers</title> | |
<script src="http://maps.google.com/maps/api/js?sensor=false"></script> | |
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.1.min.js"></script> | |
</head> | |
<body> | |
<div id="map" style="width: 500px; height: 400px;"></div> |
This file contains 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
(function(window,document,navigator,undefined){ | |
var DEBUG=true; | |
!function(factory) { | |
// Support three module loading scenarios | |
if (typeof define === 'function' && define['amd']) { | |
// [2] AMD anonymous module | |
define(['underscore', 'backbone'], factory); | |
} else { | |
// [3] No module loader (plain <script> tag) - put directly in global namespace | |
factory.call(window); |
This is now an actual repo:
NewerOlder