/** * 设置中心::关于 */ const LANG = antSword['language']['settings']['about']; class About { constructor(sidebar) { sidebar.addItem({ id: 'about', selected: true, text: ` ${LANG['title']}` }); const cell = sidebar.cells('about'); cell.attachHTMLString(`
`); // 在默认浏览器中打开链接 $('.about').on('click', 'a', function(e) { e.preventDefault(); antSword['shell'].openExternal(this.href); }); } } module.exports = About;