• Welcome to the Kancolle Wiki!
  • If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord

Changes

Jump to navigation Jump to search
Compatibility with tabview
Line 1: Line 1: −
(function($) {
+
(function(mw, $) {
 
     "use strict";
 
     "use strict";
 
     $(document).ready(function() {
 
     $(document).ready(function() {
Line 6: Line 6:  
             return;
 
             return;
 
         }
 
         }
       
+
 
 
         var ToggleStorage = function(property, property_default) {
 
         var ToggleStorage = function(property, property_default) {
 
             if (!localStorage[property]) {
 
             if (!localStorage[property]) {
Line 31: Line 31:  
             }
 
             }
 
             if (toggleStorage.on()) {
 
             if (toggleStorage.on()) {
                 toggle_element.find(".toggle-show").show();
+
                 $(".toggle-show").show();
                 toggle_element.find(".toggle-hide").hide();
+
                 $(".toggle-hide").hide();
 
                 $(target_class).show();
 
                 $(target_class).show();
 
             } else {
 
             } else {
                 toggle_element.find(".toggle-show").hide();
+
                 $(".toggle-show").hide();
                 toggle_element.find(".toggle-hide").show();
+
                 $(".toggle-hide").show();
 
                 $(target_class).hide();
 
                 $(target_class).hide();
 
             }
 
             }
 
         }
 
         }
       
  −
        $(".toggle").each(function() {
  −
            $(this).show();
  −
            update($(this));
  −
        });
     −
         $(".toggle").click(function() {
+
         function updateContent() {
            update($(this), true);
+
            $(".toggle").each(function() {
         });
+
                var toggle_element = $(this);
 +
                toggle_element.show();
 +
                update(toggle_element);
 +
                toggle_element.off("click");
 +
                toggle_element.click(function() {
 +
                    update(toggle_element, true);
 +
                });
 +
            });
 +
         }
 +
 
 +
        updateContent();
 +
        mw.hook("wikipage.content").add(updateContent);
    
     });
 
     });
}(jQuery));
+
}(mediaWiki, jQuery));
Anonymous user

Navigation menu