IE 11 throws exceptions when debugging responsive Web app with Bootstrap in Visual Studio 2013

Viewed 11428

When I resize the browser window and I hit a responsive breaking point, this (dynamic) method throws an exception at line 3:

window.__BROWSERTOOLS_CONSOLE_SAFEFUNC = function (fn) {
                var returnFn = function () {
                    return fn(arguments);
                };
                return returnFn;
            }

Unhandled exception at line 5, column 25 in eval code

0x80004005 - JavaScript runtime error: Unspecified error.

I think what this does is manage listeners for media query evaluation changes, but the arguments contain a bunch of methods that I did not try to analyze further. I have to click away about two dozens of these errors before I can continue.

When the browser is not attached to the debugger, it works fine. Is anybody else experiencing this, and can I turn it off?

1 Answers
Related