Hybrid View
-
24 Jan 2012 4:38 AM #1
ReferenceError: Can't find variable: AN
ReferenceError: Can't find variable: AN
Safari said the bug by debugger
ReferenceError: Can't find variable: AN
Code:if (typeof(AN) === undefined) { AN = {}; }
-
24 Jan 2012 7:33 AM #2
Looks like you're missing the quotes around undefined.
Code:if (typeof(AN) === "undefined") { AN = {}; }
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote