diff options
author | Richard Harrah <1672786+ToppleTheNun@users.noreply.github.com> | 2022-05-18 22:19:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 05:19:21 +0300 |
commit | e595e0eac086ea5fa14d7e13a2ad66e2ccb64dd4 (patch) | |
tree | 5cb70b272bed3b7bbbba75e676052f3d45235af0 /plugins/javadoc/src/main/resources/views | |
parent | 3dc0e7777a3d45c8b4b1e9ac91e76836a4eb4737 (diff) | |
download | dokka-e595e0eac086ea5fa14d7e13a2ad66e2ccb64dd4.tar.gz dokka-e595e0eac086ea5fa14d7e13a2ad66e2ccb64dd4.tar.bz2 dokka-e595e0eac086ea5fa14d7e13a2ad66e2ccb64dd4.zip |
Update jquery, jquery-migrate, and jquery-ui in javadoc (#2482)
* update jquery, jquery-migrate, and jquery-ui
update to jquery 3.6.0
update to jquery-migrate 3.4.0
update to jquery-ui 1.13.1
* use minified versions of jquery
Diffstat (limited to 'plugins/javadoc/src/main/resources/views')
-rw-r--r-- | plugins/javadoc/src/main/resources/views/components/head.korte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/javadoc/src/main/resources/views/components/head.korte b/plugins/javadoc/src/main/resources/views/components/head.korte index 6db0b31e..8f4aa12d 100644 --- a/plugins/javadoc/src/main/resources/views/components/head.korte +++ b/plugins/javadoc/src/main/resources/views/components/head.korte @@ -5,8 +5,8 @@ <link rel="stylesheet" type="text/css" href="{{ pathToRoot }}stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="{{ pathToRoot }}dokka-javadoc-stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="{{ pathToRoot }}jquery/jquery-ui.css" title="Style"> - <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-3.3.1.js"></script> - <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-migrate-3.0.1.js"></script> + <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-{{ jQueryVersion() }}.min.js"></script> + <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-migrate-{{ jQueryMigrateVersion() }}.min.js"></script> <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-ui.js"></script> <script type="text/javascript" src="{{ pathToRoot }}search.js"></script> @@ -15,4 +15,4 @@ <script async type="text/javascript" src="{{ pathToRoot }}type-search-index.js"></script> <script async type="text/javascript" src="{{ pathToRoot }}member-search-index.js"></script> <script async type="text/javascript" src="{{ pathToRoot }}tag-search-index.js"></script> -</head>
\ No newline at end of file +</head> |