This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
There is an issue with angular trying to call console.log.
TypeError: Illegal invocation
at equals (angular.js:1034)
at equals (angular.js:1034)
at equals (angular.js:1034)
at equals (angular.js:1034)
at equals (angular.js:1034)
at Scope.$get.Scope.$digest (angular.js:15550)
at Scope.$get.Scope.$apply (angular.js:15824)
at tick (angular.js:10983)
I've drilled it down to line 12221 which is:
return logFn.apply(console, args); in consoleLog function.
Seems like Chrome does not allow calling apply on the console object.
Chromium bug report.
Webkit bug report.
More info with my original question is here:
http://stackoverflow.com/questions/30578722/typeerror-illegal-invocation-when-trying-to-upgrade-from-v1-2