MediaWiki:Common.js:修订间差异

来自LoveLive Wiki
跳到导航 跳到搜索
无编辑摘要
无编辑摘要
第1行: 第1行:
function animate() {


}
// 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');
animate();


//shulan_desu 用于侧边栏的控制
//shulan_desu 用于侧边栏的控制

2016年7月15日 (五) 06:35的版本

// 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);
});