Difference between revisions of "MediaWiki:Common.js"

From WWII Memorial
Jump to: navigation, search
Line 17: Line 17:
 
</html>';
 
</html>';
  
}());
 
 
/* Map */
 
$(function initMap() {
 
  var uluru = {lat: -25.363, lng: 131.044};
 
  var map = new google.maps.Map(document.getElementById('map'), {zoom: 4, center: uluru});
 
  var marker = new google.maps.Marker({position: uluru, map: map});
 
 
}());
 
}());

Revision as of 22:16, 17 April 2018

/* Any JavaScript here will be loaded for all users on every page load. */

/* Google Test */
$(function () {

  var myElement = document.getElementById('mw-test');
  myElement.innerHTML = '<html>
  <head>
    <style>
       #map {
        height: 400px;
        width: 100%;
       }
    </style>
  </head>
    <div id="map">Hi</div>
</html>';

}());