We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b286c36 commit e759983Copy full SHA for e759983
src/bootstrap/WindowBootstrapper.ts
@@ -29,7 +29,8 @@ export class WindowBootstrapper implements IBootstrapper {
29
30
TraceKit.report.subscribe(this.processUnhandledException);
31
TraceKit.extendToAsynchronousCallbacks();
32
- if ($ && $(document)) {
+
33
+ if (typeof $ !== 'undefined' && $(document)) {
34
$(document).ajaxError(this.processJQueryAjaxError);
35
}
36
0 commit comments