「MediaWiki:Common.js」の版間の差分
ナビゲーションに移動
検索に移動
Hiratatomotaka (トーク | 投稿記録) 編集の要約なし |
Hiratatomotaka (トーク | 投稿記録) 編集の要約なし |
||
6行目: | 6行目: | ||
if (is_switched){ | if (is_switched){ | ||
console.log("nebula_switch: 入れ替え後のページです"); | console.log("nebula_switch: 入れ替え後のページです"); | ||
if (is_view_mode()){ | |||
if ( | |||
console.log("nebula_switch: 閲覧モードです"); | console.log("nebula_switch: 閲覧モードです"); | ||
}else | }else | ||
console.log( | console.log( | ||
36行目: | 15行目: | ||
} | } | ||
} | } | ||
function is_view_mode(){ | |||
function | var view_tab = document.getElementById("ca-view"); | ||
if ( | if (view_tab) | ||
var is_view_mode_selected | |||
= view_tab.classList.contains("selected"); | |||
else | |||
var is_view_mode_selected = false; | |||
var is_not_ve_edit_mode = uri.searchParams.get("veaction") == null; | |||
return is_view_mode_selected && is_not_ve_edit_mode | |||
} | } | ||
my_switch(); | my_switch(); |
2024年5月2日 (木) 08:13時点における版
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ function my_switch(){ var uri = new URL(window.location.href); var is_switched = uri.searchParams.get("nebula_switch") != null; if (is_switched){ console.log("nebula_switch: 入れ替え後のページです"); if (is_view_mode()){ console.log("nebula_switch: 閲覧モードです"); }else console.log( "nebula_switch: 閲覧モードでないため、入れ替えは行いません" ); } } function is_view_mode(){ var view_tab = document.getElementById("ca-view"); if (view_tab) var is_view_mode_selected = view_tab.classList.contains("selected"); else var is_view_mode_selected = false; var is_not_ve_edit_mode = uri.searchParams.get("veaction") == null; return is_view_mode_selected && is_not_ve_edit_mode } my_switch();