8203780: javadoc should be updated to use jquery 1.12.4, jquery-ui 1.12.1 and jszip v3.1.5

Reviewed-by: jjg
This commit is contained in:
Athijegannathan Sundararajan 2018-06-05 08:10:08 +05:30
parent f8d429f9c1
commit 9ef67a3d83
9 changed files with 16912 additions and 12005 deletions

View file

@ -203,7 +203,7 @@ public class HtmlDoclet extends AbstractDoclet {
protected void copyJqueryFiles() throws DocletException {
List<String> files = Arrays.asList(
"jquery-1.10.2.js",
"jquery-1.12.4.js",
"jquery-ui.js",
"jquery-ui.css",
"jquery-ui.min.js",

View file

@ -326,7 +326,7 @@ public class Head {
tree.addContent(new RawHtml("<!--[if IE]>"));
addJQueryFile(tree, DocPaths.JSZIPUTILS_IE_MIN);
tree.addContent(new RawHtml("<![endif]-->"));
addJQueryFile(tree, DocPaths.JQUERY_JS_1_10);
addJQueryFile(tree, DocPaths.JQUERY_JS_1_12);
addJQueryFile(tree, DocPaths.JQUERY_JS);
}
for (Script script : scripts) {

View file

@ -119,7 +119,7 @@ public class DocPaths {
public static final DocPath JQUERY_STYLESHEET_FILE = DocPath.create("jquery-ui.css");
/** The name of the default jQuery javascript file. */
public static final DocPath JQUERY_JS_1_10 = DocPath.create("jquery-1.10.2.js");
public static final DocPath JQUERY_JS_1_12 = DocPath.create("jquery-1.12.4.js");
/** The name of the default jQuery javascript file. */
public static final DocPath JQUERY_JS = DocPath.create("jquery-ui.js");