MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */


$(function() {
$(() => {
$("#skin-citizen-search-trigger").click(function() {
$("#skin-citizen-search-trigger").click(() => {
$("#citizen-search__buttonCheckbox").click();
$("#citizen-search__buttonCheckbox").click();
});
});
Line 8: Line 8:




$("[data-chip-popup]").hover(function() {
$("[data-chip-popup]").hover(() => {
console.log($(this).data("chip-popup"));
const title = $(this).data("chip-popup");
$.ajax({
url: "/ajax.php",
type: "GET",
data: {
action: "parse",
props: "text",
title: title,
text: "{{Chip popup}}"
},
dataType: 'json',
success: (resp) => {
console.log(resp);
}
});
});
});

Revision as of 17:40, 1 November 2022

/* Any JavaScript here will be loaded for all users on every page load. */

$(() => {
	$("#skin-citizen-search-trigger").click(() => {
		$("#citizen-search__buttonCheckbox").click();
	});
});


$("[data-chip-popup]").hover(() => {
	const title = $(this).data("chip-popup");
	$.ajax({
		url: "/ajax.php",
		type: "GET",
		data: {
			action: "parse",
			props: "text",
			title: title,
			text: "{{Chip popup}}"
		},
		dataType: 'json',
		success: (resp) => {
			console.log(resp);
		}
	});
});