Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • M MathJax
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 304
    • Issues 304
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 15
    • Merge requests 15
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • MathJax
  • MathJax
  • Issues
  • #2719
Closed
Open
Issue created Jun 24, 2021 by Administrator@rootContributor

v3.2 Lazy mode. Thank you. We expected it, you did it !

Created by: sqlpac

Bonjour,

This is not a feature request, this is not a bug report. Maybe a tiny update in the official doc pointing out that the IntersectionObserver is used, so CSS properties have to be refined for macros defined in hidden tags using the CSS property display: none.

Thank you. We expected it, you did it ! Great work, well done. We have immediately migrated to version 3.2 in lazy mode : no more blocking time in pages, great performances. Excellent. To manage macros in hidden tags, we migrated the display:none property to position:fixed, height:0, width:0 to ensure they are in the viewport and computed immediately even if the user is scrolled to any location in the page by an anchor.

  ins[class*="math"][class*="macros"]  { display: none; }

by

  ins[class*="math"][class*="macros"] {
    position: fixed; top: 10px; height: 0px; width: 0px;
    color: transparent; background-color: transparent;
}

A page blocking before v 3.2 lazy mode Another page blocking before v 3.2 lazy mode

Assignee
Assign to
Time tracking