diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2011-01-03 18:43:15 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2011-01-03 18:43:15 (GMT) |
commit | 2149c9cb1315b6a42457dd991171bf4fcf7d7015 (patch) | |
tree | c44fd80159115f91bacbc05dd72e77e5a6788e84 /src/ftvhelp.cpp | |
parent | 48f4fd9c2d9ba8b374e3c052f888df9bc220df92 (diff) | |
download | Doxygen-2149c9cb1315b6a42457dd991171bf4fcf7d7015.zip Doxygen-2149c9cb1315b6a42457dd991171bf4fcf7d7015.tar.gz Doxygen-2149c9cb1315b6a42457dd991171bf4fcf7d7015.tar.bz2 |
Release-1.7.3
Diffstat (limited to 'src/ftvhelp.cpp')
-rw-r--r-- | src/ftvhelp.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ftvhelp.cpp b/src/ftvhelp.cpp index 754ea25..c1f8b34 100644 --- a/src/ftvhelp.cpp +++ b/src/ftvhelp.cpp @@ -43,9 +43,15 @@ static const char resize_script[]= #include "resize_js.h" ; -static const char jquery_script[]= +static const char jquery_script1[]= #include "jquery_js.h" ; +static const char jquery_script2[]= +#include "sizzle_js.h" +; +static const char jquery_script3[]= +#include "jquery_ui_js.h" +; static const char navtree_css[]= #include "navtree_css.h" @@ -1088,7 +1094,7 @@ void FTVHelp::generateTreeViewScripts() if (f.open(IO_WriteOnly)) { FTextStream t(&f); - t << jquery_script; + t << jquery_script1 << jquery_script2 << jquery_script3; } } // generate navtree.css |