I was just about to report the same issue -> the problem is that the jquery script is symlinked to the wrong file (jquery-ui), causing undefined reference errors.
``` $ ll /usr/share/doc/openjdk-16-jre-headless/api/script-dir total 20 drwxr-xr-x 3 root root 4096 Jul 11 09:24 ./ drwxr-xr-x 65 root root 4096 Jul 11 09:24 ../ drwxr-xr-x 2 root root 4096 Jul 11 09:24 images/ lrwxrwxrwx 1 root root 49 Apr 21 00:19 jquery-3.5.1.min.js -> ../../../../javascript/jquery-ui/jquery-ui.min.js lrwxrwxrwx 1 root root 62 Apr 21 00:19 jquery-ui.min.css -> ../../../../javascript/jquery-ui/themes/base/jquery-ui.min.css lrwxrwxrwx 1 root root 49 Apr 21 00:19 jquery-ui.min.js -> ../../../../javascript/jquery-ui/jquery-ui.min.js -rw-r--r-- 1 root root 1787 Apr 21 00:19 jquery-ui.structure.min.css ``` The solution is to manually symlink it to the right jquery version ``` # cd ../doc/openjdk-14-jre-headless/api/script-dir/ # rm jquery-3.5.1.min.js # ln -s ../../../../javascript/jquery/jquery.min.js jquery-3.5.1.min.js ``` -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1928990 Title: Not searchable To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/openjdk-16/+bug/1928990/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
