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
Getting TypeError: Object doesn't support this property or method at line 418 ng-grid-2.0.5.debug.js.
This line uses the javascript forEach instead of the angular forEach (which seems to be used everywhere else in the file). This is causing an error in IE8. Changing to Angular's version corrects the problem.
The text was updated successfully, but these errors were encountered:
IE8 doesn't support the Array prototype's forEach() method, and I used it
in grid.initTemplates(). I've fixed this to use angular.forEach() instead
and added a test to catch calls in initTemplates() to
Array.prototype.forEach()
Getting TypeError: Object doesn't support this property or method at line 418 ng-grid-2.0.5.debug.js.
This line uses the javascript forEach instead of the angular forEach (which seems to be used everywhere else in the file). This is causing an error in IE8. Changing to Angular's version corrects the problem.
The text was updated successfully, but these errors were encountered: