We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f6da0 commit 4bb96e0Copy full SHA for 4bb96e0
docs/_static/searchtools.js
@@ -254,6 +254,12 @@ var Search = {
254
255
function _getBreadcrumbs(item, linkUrl) {
256
let parentTitles = item[6];
257
+ let ploneApiTitles = [
258
+ "A Plone API",
259
+ "List of all API methods with descriptions"
260
+ ];
261
+ // ugly hack for plone.api documentation integrated via git submodule
262
+ parentTitles = Array.isArray(parentTitles) ? parentTitles : ploneApiTitles;
263
let path = item[0].split('/')
264
.slice(0, -1);
265
path = path.map((el, index) => {
0 commit comments