Skip to content
GitLab
    • Explore Projects Groups Snippets
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
  • Merge requests
  • !1958

Fix minimum height of accents in scripts. #1956

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Davide P. Cervone requested to merge github/fork/dpvc/issue1956 into develop 7 years ago
  • Overview 1
  • Commits 1
  • Pipelines 0
  • Changes 2

Fix minimum height of accents in scripts (problem introduces in #1706 (closed)). Resolves issue #1956 (closed).

Compare
  • develop (base)

and
  • latest version
    bde4dd83
    1 commit, 2 years ago

2 files
+ 2
- 2

    Preferences

    File browser
    Compare changes
unpacked/‎jax/output‎
HTML‎-CSS‎
jax‎.js‎ +1 -1
S‎VG‎
jax‎.js‎ +1 -1
unpacked/jax/output/HTML-CSS/jax.js
+ 1
- 1
  • View file @ bde4dd83

  • Edit in single-file editor

  • Open in Web IDE


@@ -2783,7 +2783,7 @@
stretch[i] = (D == null && HW != null ? false :
this.data[i].HTMLcanStretch("Horizontal"));
if (this.data[this.over] && values.accent) {
children[i].bbox.h = Math.max(children[i].bbox.h,HTMLCSS.TeX.x_height); // min height of 1ex (#1706)
children[i].bbox.h = Math.max(children[i].bbox.h,scale*HTMLCSS.TeX.x_height); // min height of 1ex (#1706)
}
} else {
stretch[i] = this.data[i].HTMLcanStretch("Horizontal");
unpacked/jax/output/SVG/jax.js
+ 1
- 1
  • View file @ bde4dd83

  • Edit in single-file editor

  • Open in Web IDE


@@ -1960,7 +1960,7 @@
boxes[i] = this.SVGdataStretched(i,HW,D);
stretch[i] = (D != null || HW == null) && this.data[i].SVGcanStretch("Horizontal");
if (this.data[this.over] && values.accent) {
boxes[i].h = Math.max(boxes[i].h,SVG.TeX.x_height); // min height of 1ex (#1706)
boxes[i].h = Math.max(boxes[i].h,scale*SVG.TeX.x_height); // min height of 1ex (#1706)
}
} else {
boxes[i] = this.data[i].toSVG(); boxes[i].x = 0; delete boxes[i].X;
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
MathJax v2.7.4
MathJax v2.7.4
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
2
2 participants
Administrator
Davide P. Cervone
Reference: mathjax/MathJax!1958
Source branch: github/fork/dpvc/issue1956

Menu

Explore Projects Groups Snippets