80e64bfa by Yokihito Oki

特定のページのサイドメニューの追従動作を外す

1 parent f2a8c593
......@@ -212,9 +212,17 @@ if ($this->params->get('logoFile')) {
var cW = obj.width();
var cH = obj.height();
var cwrapH = $("#c_wrap").height();
// 特定のページではスクロールしない
var excludedPages = [".record-page"];
var excludedPagesSelector = excludedPages.join(', ');
var isExcluded = false;
if (document.querySelector(excludedPagesSelector)) {
isExcluded = true;
}
if (cH) {
if (sH > cH) {
if (isExcluded) return false;
$(window).scroll(function() {
if ($(window).scrollTop() > offset.top) {
if ($(window).scrollTop() < cwrapH) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!