LLWiki正在建设中,欢迎加入我们

“MediaWiki:Gadget-site-lib.js”的版本间差异

跳转到导航 跳转到搜索
(debug)
(ES5害人不浅……)
menu.on('choose', function(item, selected) {
if (!selected) { return; }
consoleconst option = options.infofind(function(e) { return e.text == item.getLabel(); });
console.info(options.map(function(e) { return e.text; }));
const option = options.find(function(e) { e.text == item.getLabel(); });
if (option.click) { option.click(); }
if (option.href) { location.href = option.href; }