MediaWiki:Common.js:修订间差异
无编辑摘要
无编辑摘要 |
无编辑摘要 标签:移动版编辑 移动版网页编辑 |
||
第4行: | 第4行: | ||
mw.loader.load("https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-grid.min.css", "text/css"); | mw.loader.load("https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-grid.min.css", "text/css"); | ||
//mw.loader.load("https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js", "text/javascript"); | //mw.loader.load("https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js", "text/javascript"); | ||
var initCount = 0 | |||
// 确保一定生效 | function initEvent(){ | ||
setTimeout(function(){ | // 确保一定生效 | ||
setTimeout(function(){ | |||
var tempBtns = $('.template-btn-container'); | |||
if(tempBtns.length === 0){ | |||
if(initCount++ >= 20) return; | |||
return initEvent() | |||
} | } | ||
// 模板 - 按钮的click事件初始化 | |||
tempBtns.click(function(e){ | |||
e.stopPropagation(); | |||
var temp = this, link = this.getAttribute('data-link') || ''; | |||
if(link.indexOf('http:') || link.indexOf('https:')){ | |||
window.open(link, '_blank'); | |||
}else{ | |||
window.open('/index.php/' + link, '_blank'); | |||
} | |||
}) | |||
// 模板-按钮-图标svg处理 | |||
tempBtns.each( function(index, btnDom){ | |||
var imgDom = $(btnDom).find('img')[0] | |||
}, | if(imgDom && imgDom.src.indexOf('.svg/')>0){ | ||
var svgSrc = imgDom.src.replace(/svg\/.+\.png/g, 'svg').replace('thumb/','') | |||
fetch(svgSrc).then(function(res){return res.text()}).then(function(svgHtml){ | |||
$(imgDom.parentNode.parentNode).replaceWith(svgHtml) | |||
}) | |||
} | |||
}) | |||
console.log('init event~') | |||
}, 100) | |||
} | |||
initEvent() | |||
console.log('js init~') |