MediaWiki:Mobile.js

Bhsd讨论 | 贡献2020年8月13日 (四) 02:00的版本

注意:在保存之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:前往菜单 → 设置(Mac为Opera → Preferences),然后隐私和安全 → 清除浏览数据 → 缓存的图片和文件
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
//<nowiki>
(function($, mw) {
    $(function () {
        mw.loader.using('ext.gadget.site-lib').then(function() {
            /* Add to MediaWiki:Mobile.js for custom Mobile Menu links 
            for MW-1.34.2 with MobileFrontend and MinervaNeue 
            Just replace span text and href to add links */
            var menu = wgULS({recentchanges : '最近更改', sandbox : '沙盒', villagepump : '互助客栈', policy : '方针', help : '帮助'}, {recentchanges : '近期變更', sandbox : '沙盒', villagepump : '互助客棧', policy : '方針', help : '幫助'});
            var timer = setInterval(function() {
                if($('.menu ul:first').length) {
                    console.log("mobile menu exists");
                    clearInterval(timer);
                    $('.menu ul:first').append('<li><a href="/zh/special:recentchanges" class="mw-ui-icon mw-ui-icon-before"><span>' + menu.recentchanges + '</span></a></li><li><a href="/zh/project:沙盒" class="mw-ui-icon mw-ui-icon-before"><span>' + menu.sandbox + '</span></a></li><li><a href="/zh/project:互助客栈" class="mw-ui-icon mw-ui-icon-before"><span>' + menu.villagepump + '</span></a></li><li><a href="/zh/project:方针" class="mw-ui-icon mw-ui-icon-before"><span>' + menu.policy + '</span></a></li><li><a href="/zh/help:帮助总览" class="mw-ui-icon mw-ui-icon-before"><span>' + menu.help + '</span></a></li>');
                }
            }, 100);

            /* 沙盒顶部 */
            $('.page-LLWiki_沙盒 #mf-section-0').prepend('<table style="background-color:#F3F5F7;border:1px solid #D4DBE2;border-radius:5px;width:70%;border-left:10px solid #C5C5C5;margin:auto" cellpadding="4px" align="center"><tbody><tr><td width="15%"><div class="center"><img src="/mediawiki/img_auth.php/thumb/0/04/Bandeau-avertisement-3.png/50px-Bandeau-avertisement-3.png" decoding="async" srcset="/mediawiki/img_auth.php/0/04/Bandeau-avertisement-3.png 1.5x" width="50" height="50"></div></td><td style="padding-left:5px">' + wgUCS("欢迎来到沙盒!您可以在此进行编辑测试。", "歡迎來到沙盒!您可以在此進行編輯測試。") + '</td></tr></tbody></table>');
        });
		
        /* 引自zh.moegirl.org.cn/mediawiki:mobile.js */
        /* jquery.collapsible */
        if ($('.mw-collapsible').length) {
            mw.loader.using('jquery.makeCollapsible').then(function() {
                $('.mw-collapsible').makeCollapsible();
            });
        }
        
        /* jquery.tablesorter */
        if ($('table.sortable').length) {
            mw.loader.using('jquery.tablesorter').then(function() {
                $('table.sortable').tablesorter();
            });
        }
		
        /* 特殊页面 */
        $('.page-Special_用户列表 h1').html('LLWiki上的LLer');
    });
})(jQuery, mediaWiki);
//</nowiki>