diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-04-22 09:58:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 09:58:33 (GMT) |
commit | 375eb0646db09d6a3b359814141ba1696f5d8b19 (patch) | |
tree | b87e13db9d1e84ad214b85ab1df50eefd187b468 | |
parent | b6f656dc2c44cdd349a339760d714d57172f0077 (diff) | |
parent | 1b8afc8802f7ac40614e95a47ffd3ae152b57987 (diff) | |
download | Doxygen-375eb0646db09d6a3b359814141ba1696f5d8b19.zip Doxygen-375eb0646db09d6a3b359814141ba1696f5d8b19.tar.gz Doxygen-375eb0646db09d6a3b359814141ba1696f5d8b19.tar.bz2 |
Merge pull request #692 from albert-github/feature/bug_792211_2
Bug 792211 - When generating xhtml, async attribute on script tags need a value
-rw-r--r-- | src/htmlgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 585a1b2..accc6a0 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -375,7 +375,7 @@ static QCString substituteHtmlKeywords(const QCString &s, mathJaxJs += "\n"; } mathJaxJs += "</script>"; - mathJaxJs += "<script type=\"text/javascript\" async src=\"" + path + "MathJax.js\"></script>\n"; + mathJaxJs += "<script type=\"text/javascript\" async=\"async\" src=\"" + path + "MathJax.js\"></script>\n"; } // first substitute generic keywords |