Syntax Errors in jquery.js for Doxygen

Viewed 21

I'm seeing some errors with jquery.js with Doxygen external search.

Uncaught SyntaxError: Unexpected end of input
    at b (jquery.js:2:765)
    at Function.globalEval (jquery.js:2:2681)
    at text script (jquery.js:2:81842)
    at jquery.js:2:78358
    at l (jquery.js:2:78475)
    at XMLHttpRequest.<anonymous> (jquery.js:2:81117)

I looked at 'function b' on https://github.com/doxygen/doxygen/blob/master/jquery/jquery-3.6.0.min.js and it's identical to what I have on 1.9.1. The code is compressed so it's hard to read & debug.

The function throwing one of the SyntaxErrors:

function b(e, t, n) {
    var r, i, o = (n = n || E).createElement("script");
    if (o.text = e, t)
        for (r in c)(i = t[r] || t.getAttribute && t.getAttribute(r)) && o.setAttribute(r, i);
    n.head.appendChild(o).parentNode.removeChild(o)
}
0 Answers
Related