summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-11-04 19:10:28 (GMT)
committerGitHub <noreply@github.com>2016-11-04 19:10:28 (GMT)
commit850f0ce7eaf0a689a8e8ef7f3ca05b7a152ab0ad (patch)
tree0882c65fdda7b5db53c59744545c6957f3b12d73 /src
parent7adbd2e9e8436ab2f21f9ac955fedef425c57346 (diff)
parentbf9415698e53d79b4b94bdf64a52be4347eb3150 (diff)
downloadDoxygen-850f0ce7eaf0a689a8e8ef7f3ca05b7a152ab0ad.zip
Doxygen-850f0ce7eaf0a689a8e8ef7f3ca05b7a152ab0ad.tar.gz
Doxygen-850f0ce7eaf0a689a8e8ef7f3ca05b7a152ab0ad.tar.bz2
Merge pull request #541 from kossebau/addMoreJSFilesToQCHFile
Fix: Add missing jquery.js, dynsections.js & optional svgpan.js to QCH file
Diffstat (limited to 'src')
-rw-r--r--src/htmlgen.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 5b4519b..0ca7182 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1026,6 +1026,13 @@ void HtmlGenerator::writeStyleInfo(int part)
}
}
}
+
+ Doxygen::indexList->addStyleSheetFile("jquery.js");
+ Doxygen::indexList->addStyleSheetFile("dynsections.js");
+ if (Config_getBool(INTERACTIVE_SVG))
+ {
+ Doxygen::indexList->addStyleSheetFile("svgpan.js");
+ }
}
}