Difference between revisions of "MediaWiki:Common.js"

From RimWorld Wiki
Jump to navigation Jump to search
m
m
 
(16 intermediate revisions by the same user 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. */
/*
+
 
jQuery(document).ready(function($) {
+
jQuery(document).ready(function ($) {
$('.spoiler-body').hide();
+
    $('.spoiler-body').hide();
$('.spoiler-title').click(function(){
+
    $('.spoiler-title').click(function () {
    $(this).toggleClass('opened').toggleClass('closed').next().slideToggle();
+
        $(this).toggleClass('opened').toggleClass('closed').next().slideToggle();
    if($(this).hasClass('opened')) {
+
        if ($(this).hasClass('opened')) {
         $(this).html(' [hide] ');
+
            $(this).html('  ');
     }
+
         } else {
     else {
+
            $(this).html('  ');
         $(this).html(' [show] ');
+
        }
     }
+
     });
 +
    /*
 +
     $('#mtoogle').toggle(function () {
 +
         $('#playTune')[0].play(), $('#mtoogle').addClass('play');
 +
    }, function () {
 +
        $('#playTune')[0].pause(), $('#mtoogle').removeClass('play');
 +
     });
 +
    */
 
});
 
});
});
 
*/
 

Latest revision as of 15:18, 11 March 2014

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

jQuery(document).ready(function ($) {
    $('.spoiler-body').hide();
    $('.spoiler-title').click(function () {
        $(this).toggleClass('opened').toggleClass('closed').next().slideToggle();
        if ($(this).hasClass('opened')) {
            $(this).html('  ');
        } else {
            $(this).html('  ');
        }
    });
    /*
    $('#mtoogle').toggle(function () {
        $('#playTune')[0].play(), $('#mtoogle').addClass('play');
    }, function () {
        $('#playTune')[0].pause(), $('#mtoogle').removeClass('play');
    });
    */
});