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.
New angular 1.0 RC1 line 4942
$log.error.apply($log, arguments);
Results in the following error on IE
"Error: Object doesn't support property or method 'apply'"
In previous versions the apply method was not being used on $log.error. Possible fix at line 6765.
// we are IE, in which case there is nothing we can do
return logFn;
The text was updated successfully, but these errors were encountered:
In IE window.console.log and friends are functions that don't have apply or call fns.
For this reason we have to treat them specially and do our best to log at least
something when running in this browser.
Closesangular#805
New angular 1.0 RC1 line 4942
$log.error.apply($log, arguments);
Results in the following error on IE
"Error: Object doesn't support property or method 'apply'"
In previous versions the apply method was not being used on $log.error. Possible fix at line 6765.
The text was updated successfully, but these errors were encountered: