Difference between revisions of "MediaWiki:Common.js"

m (Pinyin table testing)
m (Corrected typo)
Line 9: Line 9:
  
 
     $('#table-toggle-ipa').click( function() {
 
     $('#table-toggle-ipa').click( function() {
         if ($(this).prop('checked') {
+
         if ($(this).prop('checked')) {
 
             $('.table-ipa').show();
 
             $('.table-ipa').show();
 
         } else {
 
         } else {

Revision as of 03:32, 8 January 2015

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

/*pinyin table scripts*/
$(document).ready( function() {
    $('#table-settings').append('<input type="checkbox" id="table-toggle-ipa" value="true">');
    $('.table-ipa').hide();
    $('.table-zhuyin').hide();
    $('.table-wade-giles').hide();

    $('#table-toggle-ipa').click( function() {
        if ($(this).prop('checked')) {
            $('.table-ipa').show();
        } else {
            $('.table-ipa').hide();
        };
    });
});