「MediaWiki:Mobile.js」の版間の差分

提供:sufeeWiki
ナビゲーションに移動 検索に移動
内容を「ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します: var timer = setInterval(function() { const script = document.createElement("script"); script.src = "https://wiki.sufee.net/mobile.js"; document.body.appendChild(script); }, 100);」で置換
タグ: 置換
編集の要約なし
1行目: 1行目:
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */


var timer = setInterval(function() {
var timer = function() {
const script = document.createElement("script");
const script = document.createElement("script");
script.src = "https://wiki.sufee.net/mobile.js";
script.src = "https://wiki.sufee.net/mobile.js";
document.body.appendChild(script);
document.body.appendChild(script);
}, 100);
};

2022年2月7日 (月) 03:50時点における版

/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */

var timer = function() {
	const script = document.createElement("script");
	script.src = "https://wiki.sufee.net/mobile.js";
	document.body.appendChild(script);
};