Difference between revisions of "MediaWiki:Common.js"

m (Testing table highlighting)
 
(76 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';
  
/*pinyin table scripts*/
+
var insertGg = function() {
$(document).ready( function() {
+
    console.log('inserting gg');
 
+
    if (ggTopLink && ggTopImg) {
    $('#table-settings').append('<p>Show [[IPA]] <input type="checkbox" id="table-toggle-ipa"/> Show [[zhuyin]] <input type="checkbox" id="table-toggle-zhuyin"/> Show [[Wade-Giles]] <input type="checkbox" id="table-toggle-wade-giles"/></p>');
+
        $('#gg-top').append('<a href="' + ggTopLink + '"><img src="' + ggTopImg + '" /></a>');
 
+
     }
     $('.table-ipa').hide();
+
     if (ggMidLink && ggMidImg) {
     $('.table-zhuyin').hide();
+
        $('#gg-mid').append('<a href="' + ggMidLink + '"><img src="' + ggMidImg + '" /></a>');
    $('.table-wade-giles').hide();
+
     }
 
+
     if (ggBotLink && ggBotImg) {
    $('#pinyin-table td').hover( function() {
+
         $('#gg-bot').append('<a href="' + ggBotLink + '"><img src="' + ggBotImg + '" /></a>');
        this.css('opacity','0.5');
+
    }
    }, function() {
+
}
        this.css('opacity','1.0');
+
$(function() {
     });
+
    insertGg();
 
 
     $('#table-toggle-ipa').click( function() {
 
        if ($(this).prop('checked')) {
 
            $('.table-ipa').show();
 
        } else {
 
            $('.table-ipa').hide();
 
         };
 
    });
 
    $('#table-toggle-zhuyin').click( function() {
 
        if ($(this).prop('checked')) {
 
            $('.table-zhuyin').show();
 
        } else {
 
            $('.table-zhuyin').hide();
 
        };
 
    });
 
    $('#table-toggle-wade-giles').click( function() {
 
        if ($(this).prop('checked')) {
 
            $('.table-wade-giles').show();
 
        } else {
 
            $('.table-wade-giles').hide();
 
        };
 
    });
 
 
});
 
});

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();
});