MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
$('#hamwanMapOnThisPage').hide(); | |||
$(function () { | $(function () { | ||
if ( $('#hamwanMapOnThisPage').length >= 1 ) { | if ( $('#hamwanMapOnThisPage').length >= 1 ) { | ||
var tgtURL = "http://44.135.216.2/cacti/ocarc/embed.php?"; | var tgtURL = "http://44.135.216.2/cacti/ocarc/embed.php?"; | ||
if ( $('#hamwanMapOnThisPage #centerLat').text() ) { | |||
tgtURL += 'centerLat=' + $('#hamwanMapOnThisPage #centerLat').text() + "&"; | |||
} | |||
if ( $('#hamwanMapOnThisPage #centerLon').text() ) { | |||
tgtURL += 'centerLon=' + $('#hamwanMapOnThisPage #centerLon').text() + "&"; | |||
} | |||
if ( $('#hamwanMapOnThisPage #zoom').text() ) { | if ( $('#hamwanMapOnThisPage #zoom').text() ) { | ||
tgtURL += 'zoom=' + $('#hamwanMapOnThisPage #zoom').text(); | tgtURL += 'zoom=' + $('#hamwanMapOnThisPage #zoom').text() + "&"; | ||
} | } | ||
Revision as of 18:41, 10 July 2017
/* Any JavaScript here will be loaded for all users on every page load. */ $('#hamwanMapOnThisPage').hide(); $(function () { if ( $('#hamwanMapOnThisPage').length >= 1 ) { var tgtURL = "http://44.135.216.2/cacti/ocarc/embed.php?"; 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=" margin-bottom: -35px; height:350px; margin-left: 11em;"><iframe style=" width:100%; height:100%; border: none" src="' + tgtURL + '"></iframe></div>'); } }());