MediaWiki:Common.js

From OCARC
Revision as of 20:29, 13 October 2017 by Va7stv (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
$('#hamwanMapOnThisPage').hide();


$(function () {
  if ( $('#hamwanMapOnThisPage').length >= 1 ) {
  var tgtURL = "http://portal.hamwan.ca/map/embed?";
  
  if ( $('#hamwanMapOnThisPage #centerLat').text() ) {
    tgtURL += 'centerLat=' + $('#hamwanMapOnThisPage #centerLat').text() + "&";
  }
  if ( $('#hamwanMapOnThisPage #centerLon').text() ) {
    tgtURL += 'centerLon=' + $('#hamwanMapOnThisPage #centerLon').text() + "&";
  }
  if ( $('#hamwanMapOnThisPage #zoom').text() ) {
    tgtURL += 'zoom=' + $('#hamwanMapOnThisPage #zoom').text() + "&";
  }

  $('#content').before('<div id="hamwanMap" style="   height:350px;  margin-left: 11em;"><iframe style=" width:100%; height:100%; border: none" src="' + tgtURL + '"></iframe></div>');


setInterval( 1000, function() {
  $('img.liveCamera').each( function(k,v) {
     if( $(v).attr('orig-src') == undefined) {
     $(v).attr('orig-src', $(v).attr('src'));
     }
      d = new Date();
      $(v).attr("src", $(v).attr('orig-src') + "?"+d.getTime()); 
});

  });
}());