Safari said the bug by debugger
ReferenceError: Can't find variable: AN
Code:if (typeof(AN) === undefined) { AN = {}; }
Safari said the bug by debugger
ReferenceError: Can't find variable: AN
Code:if (typeof(AN) === undefined) { AN = {}; }
Looks like you're missing the quotes around undefined.
Code:if (typeof(AN) === "undefined") { AN = {}; }