Skip to content

Commit 738db97

Browse files
committed
regenerate all HTML files with fullscreen view-toggle fix
1 parent 153592f commit 738db97

15 files changed

+46
-16
lines changed

docs/docs_HTML/HTML_Docs/acknowledgements.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4977,11 +4977,13 @@ <h4 class="toc-title">On this page</h4>
49774977
if (!svg) return this.showToast('Graph not ready');
49784978
const graphTitle = this.container.querySelector('.graph-title');
49794979
const title = graphTitle ? graphTitle.textContent : 'Graph View';
4980+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
4981+
const baseId = this.diagramId.replace(/^diagram-/, '');
49804982

49814983
FullscreenManager.open({
49824984
svg,
49834985
title,
4984-
diagramId: this.diagramId,
4986+
diagramId: baseId,
49854987
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
49864988
});
49874989
}

docs/docs_HTML/HTML_Docs/glossary-and-tools.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5063,11 +5063,13 @@ <h4 class="toc-title">On this page</h4>
50635063
if (!svg) return this.showToast('Graph not ready');
50645064
const graphTitle = this.container.querySelector('.graph-title');
50655065
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5066+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5067+
const baseId = this.diagramId.replace(/^diagram-/, '');
50665068

50675069
FullscreenManager.open({
50685070
svg,
50695071
title,
5070-
diagramId: this.diagramId,
5072+
diagramId: baseId,
50715073
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
50725074
});
50735075
}

docs/docs_HTML/HTML_Docs/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4998,11 +4998,13 @@ <h4 class="toc-title">On this page</h4>
49984998
if (!svg) return this.showToast('Graph not ready');
49994999
const graphTitle = this.container.querySelector('.graph-title');
50005000
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5001+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5002+
const baseId = this.diagramId.replace(/^diagram-/, '');
50015003

50025004
FullscreenManager.open({
50035005
svg,
50045006
title,
5005-
diagramId: this.diagramId,
5007+
diagramId: baseId,
50065008
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
50075009
});
50085010
}

docs/docs_HTML/HTML_Docs/intro.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5054,11 +5054,13 @@ <h4 class="toc-title">On this page</h4>
50545054
if (!svg) return this.showToast('Graph not ready');
50555055
const graphTitle = this.container.querySelector('.graph-title');
50565056
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5057+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5058+
const baseId = this.diagramId.replace(/^diagram-/, '');
50575059

50585060
FullscreenManager.open({
50595061
svg,
50605062
title,
5061-
diagramId: this.diagramId,
5063+
diagramId: baseId,
50625064
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
50635065
});
50645066
}

docs/docs_HTML/HTML_Docs/introduction-to-ontologies.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5091,11 +5091,13 @@ <h4 class="toc-title">On this page</h4>
50915091
if (!svg) return this.showToast('Graph not ready');
50925092
const graphTitle = this.container.querySelector('.graph-title');
50935093
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5094+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5095+
const baseId = this.diagramId.replace(/^diagram-/, '');
50945096

50955097
FullscreenManager.open({
50965098
svg,
50975099
title,
5098-
diagramId: this.diagramId,
5100+
diagramId: baseId,
50995101
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
51005102
});
51015103
}

docs/docs_HTML/HTML_Docs/migration.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5071,11 +5071,13 @@ <h4 class="toc-title">On this page</h4>
50715071
if (!svg) return this.showToast('Graph not ready');
50725072
const graphTitle = this.container.querySelector('.graph-title');
50735073
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5074+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5075+
const baseId = this.diagramId.replace(/^diagram-/, '');
50745076

50755077
FullscreenManager.open({
50765078
svg,
50775079
title,
5078-
diagramId: this.diagramId,
5080+
diagramId: baseId,
50795081
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
50805082
});
50815083
}

docs/docs_HTML/HTML_Docs/obsolete-ontology-terms.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5040,11 +5040,13 @@ <h4 class="toc-title">On this page</h4>
50405040
if (!svg) return this.showToast('Graph not ready');
50415041
const graphTitle = this.container.querySelector('.graph-title');
50425042
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5043+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5044+
const baseId = this.diagramId.replace(/^diagram-/, '');
50435045

50445046
FullscreenManager.open({
50455047
svg,
50465048
title,
5047-
diagramId: this.diagramId,
5049+
diagramId: baseId,
50485050
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
50495051
});
50505052
}

docs/docs_HTML/HTML_Docs/ontology-structure.html

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

docs/docs_HTML/HTML_Docs/patterns.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12899,11 +12899,13 @@ <h4 class="toc-title">On this page</h4>
1289912899
if (!svg) return this.showToast('Graph not ready');
1290012900
const graphTitle = this.container.querySelector('.graph-title');
1290112901
const title = graphTitle ? graphTitle.textContent : 'Graph View';
12902+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
12903+
const baseId = this.diagramId.replace(/^diagram-/, '');
1290212904

1290312905
FullscreenManager.open({
1290412906
svg,
1290512907
title,
12906-
diagramId: this.diagramId,
12908+
diagramId: baseId,
1290712909
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
1290812910
});
1290912911
}

docs/docs_HTML/HTML_Docs/pmdco-user-guide.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5154,11 +5154,13 @@ <h4 class="toc-title">On this page</h4>
51545154
if (!svg) return this.showToast('Graph not ready');
51555155
const graphTitle = this.container.querySelector('.graph-title');
51565156
const title = graphTitle ? graphTitle.textContent : 'Graph View';
5157+
// Strip "diagram-" prefix so the id matches dotDiagrams keys
5158+
const baseId = this.diagramId.replace(/^diagram-/, '');
51575159

51585160
FullscreenManager.open({
51595161
svg,
51605162
title,
5161-
diagramId: this.diagramId,
5163+
diagramId: baseId,
51625164
onNodeClick: (nodeG, x, y) => this.showPopForNode(nodeG, x, y)
51635165
});
51645166
}

0 commit comments

Comments
 (0)