MediaWiki:Common.js:修订间差异

来自圣洛神教
跳转到导航 跳转到搜索
无编辑摘要
标签已被回退
无编辑摘要
标签手工回退
 
第5行: 第5行:
$( this ).toggleClass( 'active' );
$( this ).toggleClass( 'active' );
});
});
});
mw.hook('wikipage.content').add(function ($content) {
    $content.find('.audio‑click').on('click', function (e) {
        e.preventDefault();
        const audioUrl = $(this).data('audio');
        const audio = new Audio(audioUrl);
        audio.play();
    });
});
});

2026年9月3日 (四) 11:06的最新版本

$( function () {
	$( '.touch‑heimu' ).on( 'click touchstart', function ( e ) {
		if ( ! window.matchMedia( '(hover: none)' ).matches ) return;
		e.preventDefault();
		$( this ).toggleClass( 'active' );
	});
});