MediaWiki:Common.js

来自LoveLive Wiki
缪斯讨论 | 贡献2016年7月15日 (五) 15:34的版本 (恢复渡边曜讨论)的编辑至缪斯的最后版本)
跳到导航 跳到搜索

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

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
// add Wiki plus, refer from https://zh.moegirl.org/User:%E5%A6%B9%E7%A9%BA%E9%85%B1/Wikiplus
mw.loader.load('https://wikiplus-app.smartgslb.com/Main.min.js');

//shulan_desu 用于侧边栏的控制
$(function() {
	var Accordion = function(el, multiple) {
		this.el = el || {};
		this.multiple = multiple || false;

		// Variables privadas
		var links = this.el.find('.portal h3');
		// Evento
		links.on('click', {el: this.el, multiple: this.multiple}, this.dropdown);
               // OP
               links.click();
	};

	Accordion.prototype.dropdown = function(e) {
		var $el = e.data.el;
			$this = $(this),
			$next = $this.next();

		$next.slideToggle();
		$this.parent().toggleClass('open');

		if (!e.data.multiple) {
			$el.find('#mw-panel .portal h3 .body ul').not($next).slideUp().parent().removeClass('open');
		}
	};	

	var accordion = new Accordion($('#mw-panel'), false);
});