|
|
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) |
Zeile 1: |
Zeile 1: |
| /* All JavaScript here will be loaded for users of the Citizen skin */ | | /* All JavaScript here will be loaded for users of the Citizen skin */ |
|
| |
| $("li.mw-search-result").click(function(e) {
| |
| var parent = e.target;
| |
| if (!$(parent).hasClass("mw-search-result")) {
| |
| parent = $(parent).parent();
| |
| }
| |
| $(parent).find(".mw-search-result-heading > a")[0].click();
| |
| });
| |
|
| |
| $(".live table").click(function(e) {
| |
| var parent = e.target;
| |
| if ($(parent).hasClass("mw-enhanced-rc")) {
| |
| parent = $(parent).parent().parent().parent();
| |
| }
| |
| $(parent).find(".mw-title > a")[0].click();
| |
| });
| |
|
| |
| $(window).scroll(function() {
| |
| if ($(this).scrollTop() > 20) {
| |
| $('#searchform').addClass('fadeOut');
| |
| $('#search-toggle').addClass('fadeOut');
| |
| $('#search-toggle-icon').addClass('fadeOut');
| |
| } else {
| |
| $('#searchform').removeClass('fadeOut');
| |
| $('#search-toggle').removeClass('fadeOut');
| |
| $('#search-toggle-icon').removeClass('fadeOut');
| |
| }
| |
| });
| |