MediaWiki:Mobile.js:修订间差异

删除612字节 、​ 2024年2月17日 (星期六)
无编辑摘要
无编辑摘要
标签移动版编辑 移动版网页编辑
无编辑摘要
标签移动版编辑 移动版网页编辑
第1行: 第1行:
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
// Wait for the DOM to be ready
document.addEventListener("DOMContentLoaded", function() {
  // Check if we are in mobile view
  if (mw.config.get('skin') === 'minerva') {
    // Create a new link
    var newLink = document.createElement('a');
    newLink.href = '/wiki/Special:MyPage';
    newLink.textContent = 'My Page';
    // Create a new list item
    var newListItem = document.createElement('li');
    newListItem.appendChild(newLink);
    // Add the list item to the menu
    var menu = document.getElementById('p-navigation').getElementsByTagName('ul')[0];
    menu.appendChild(newListItem);
  }
});


function menuadjust() {
function menuadjust() {