You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
I'm also having the same issue, but in Chrome 31.0.1650.57. I've applied the same fix and I'm still getting the error. By the way, this is on line 9187 of Angular 1.2.3.
On line 9153 of AngularJS 1.2.2 we have the following:
if (logFn.apply) {
this breaks on IE8 because logFn is just an empty object. To make it work it must be modified like this:
if (typeof logFn.apply === 'function' && logFn.apply) {
This works perfectly on all browsers.
The text was updated successfully, but these errors were encountered: