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

提供:sufeeWiki
ナビゲーションに移動 検索に移動
タグ: 置換 mobile web edit mobile edit
編集の要約なし
タグ: mobile web edit mobile edit
 
(同じ利用者による、間の7版が非表示)
1行目: 1行目:
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */
var timer = function() {
const script = document.createElement("script");
script.src = "https://wiki.sufee.net/mobile.js";
document.body.appendChild(script);
};
timer();

2022年2月7日 (月) 04:12時点における最新版

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

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