Difference between revisions of "MediaWiki:Common.js"
Mscottmoore (talk | contribs) m (Testing pinyin table audio) |
|||
(57 intermediate revisions by 3 users not shown) | |||
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. */ | ||
+ | var ggTopLink = 'https://store.allsetlearning.com?utm_source=wiki&utm_medium=wiki-ad&utm_campaign=pronwiki' | ||
+ | var ggTopImg = '/pronwiki/skins/allset/assets/test/gg-top-PronPacks.png'; | ||
+ | var ggMidLink = 'https://store.allsetlearning.com?utm_source=wiki&utm_medium=wiki-ad&utm_campaign=pronwiki'; | ||
+ | var ggMidImg = '/pronwiki/skins/allset/assets/test/gg-mid-PronPacks.png'; | ||
+ | var ggBotLink = 'https://store.allsetlearning.com?utm_source=wiki&utm_medium=wiki-ad&utm_campaign=pronwiki'; | ||
+ | var ggBotImg = '/pronwiki/skins/allset/assets/test/gg-bot-PronPacks.png'; | ||
− | + | var insertGg = function() { | |
− | + | console.log('inserting gg'); | |
− | + | if (ggTopLink && ggTopImg) { | |
− | + | $('#gg-top').append('<a href="' + ggTopLink + '"><img src="' + ggTopImg + '" /></a>'); | |
− | + | } | |
− | + | if (ggMidLink && ggMidImg) { | |
− | + | $('#gg-mid').append('<a href="' + ggMidLink + '"><img src="' + ggMidImg + '" /></a>'); | |
− | + | } | |
− | + | if (ggBotLink && ggBotImg) { | |
− | + | $('#gg-bot').append('<a href="' + ggBotLink + '"><img src="' + ggBotImg + '" /></a>'); | |
− | + | } | |
− | + | } | |
− | + | $(function() { | |
− | + | insertGg(); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
}); | }); |
Latest revision as of 01:05, 4 October 2019
/* Any JavaScript here will be loaded for all users on every page load. */
var ggTopLink = 'https://store.allsetlearning.com?utm_source=wiki&utm_medium=wiki-ad&utm_campaign=pronwiki'
var ggTopImg = '/pronwiki/skins/allset/assets/test/gg-top-PronPacks.png';
var ggMidLink = 'https://store.allsetlearning.com?utm_source=wiki&utm_medium=wiki-ad&utm_campaign=pronwiki';
var ggMidImg = '/pronwiki/skins/allset/assets/test/gg-mid-PronPacks.png';
var ggBotLink = 'https://store.allsetlearning.com?utm_source=wiki&utm_medium=wiki-ad&utm_campaign=pronwiki';
var ggBotImg = '/pronwiki/skins/allset/assets/test/gg-bot-PronPacks.png';
var insertGg = function() {
console.log('inserting gg');
if (ggTopLink && ggTopImg) {
$('#gg-top').append('<a href="' + ggTopLink + '"><img src="' + ggTopImg + '" /></a>');
}
if (ggMidLink && ggMidImg) {
$('#gg-mid').append('<a href="' + ggMidLink + '"><img src="' + ggMidImg + '" /></a>');
}
if (ggBotLink && ggBotImg) {
$('#gg-bot').append('<a href="' + ggBotLink + '"><img src="' + ggBotImg + '" /></a>');
}
}
$(function() {
insertGg();
});