Last modified by Super Admin on 2026/04/05 18:59

From version Icon 33.1 Icon
edited by Super Admin
on 2026/03/10 13:51
Change comment: There is no comment for this version
To version Icon 35.1 Icon
edited by Super Admin
on 2026/03/10 14:36
Change comment: There is no comment for this version

Summary

Details

Icon Page properties
Content
... ... @@ -1010,8 +1010,13 @@
1010 1010   }
1011 1011   });
1012 1012  }
1013 -// ページ読み込み時にデフォルトで現在年度を表示
1013 +// ページ読み込み時の初期化
1014 1014  document.addEventListener('DOMContentLoaded', function() {
1015 + // ページタイトルを学校名に置換(デフォルトでは学校コードが表示されるため)
1016 + var titleEl = document.querySelector('#document-title h1');
1017 + var schoolNameVal = "$!escapetool.javascript($!schoolName)";
1018 + if (titleEl && schoolNameVal) { titleEl.textContent = schoolNameVal; }
1019 + // デフォルトで現在の年度を表示
1015 1015   var defaultTab = document.querySelector('.activity-fy-tab.active');
1016 1016   if (defaultTab) { defaultTab.click(); }
1017 1017   // 保存成功時のトースト通知