- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "MediaWiki:DetailToggle.js"
Jump to navigation
Jump to search
com>Ckwng (Trigger wide table scan on toggle.) |
(Support multiple .toggle elements) |
||
Line 1: | Line 1: | ||
(function(mw, $) { | (function(mw, $) { | ||
+ | |||
"use strict"; | "use strict"; | ||
+ | |||
$(document).ready(function() { | $(document).ready(function() { | ||
Line 35: | Line 37: | ||
toggleStorage.toggle(); | toggleStorage.toggle(); | ||
} | } | ||
+ | var toggle_show_selector = '.toggle[data-target="' + property + '"] .toggle-show', | ||
+ | toggle_hide_selector = '.toggle[data-target="' + property + '"] .toggle-hide'; | ||
if (toggleStorage.on()) { | if (toggleStorage.on()) { | ||
− | $( | + | $(toggle_show_selector).show(); |
− | $( | + | $(toggle_hide_selector).hide(); |
$(target_class).show(); | $(target_class).show(); | ||
if (anti_target_class) { | if (anti_target_class) { | ||
Line 43: | Line 47: | ||
} | } | ||
} else { | } else { | ||
− | $( | + | $(toggle_show_selector).hide(); |
− | $( | + | $(toggle_hide_selector).show(); |
$(target_class).hide(); | $(target_class).hide(); | ||
if (anti_target_class) { | if (anti_target_class) { | ||
Line 69: | Line 73: | ||
}); | }); | ||
+ | |||
}(mediaWiki, jQuery)); | }(mediaWiki, jQuery)); |
Revision as of 21:11, 18 July 2016
(function(mw, $) {
"use strict";
$(document).ready(function() {
if (typeof(Storage) === "undefined") {
return;
}
var ToggleStorage = function(property, property_default) {
if (!localStorage[property]) {
localStorage[property] = property_default;
}
return {
toggle: function() {
localStorage[property] = localStorage[property] === "show" ? "hide" : "show";
},
on: function() {
return localStorage[property] === "show";
}
};
}
function update(toggle_element, toggle) {
var property = toggle_element.data("target") || "default",
property_anti = toggle_element.data("anti-target"),
property_default = toggle_element.data("default") || "show",
target = "toggle-target-" + property,
target_class = "." + target,
anti_target_class,
toggleStorage = ToggleStorage(target, property_default);
if (property_anti) {
anti_target_class = ".toggle-anti-target-" + property;
}
if (toggle) {
toggleStorage.toggle();
}
var toggle_show_selector = '.toggle[data-target="' + property + '"] .toggle-show',
toggle_hide_selector = '.toggle[data-target="' + property + '"] .toggle-hide';
if (toggleStorage.on()) {
$(toggle_show_selector).show();
$(toggle_hide_selector).hide();
$(target_class).show();
if (anti_target_class) {
$(anti_target_class).hide();
}
} else {
$(toggle_show_selector).hide();
$(toggle_hide_selector).show();
$(target_class).hide();
if (anti_target_class) {
$(anti_target_class).show();
}
}
$(window).trigger("WideTablesScan");
}
function updateContent() {
$(".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);
});
}(mediaWiki, jQuery));