-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Remove more bits and pieces of Internet Explorer 8 support #9478
Conversation
@@ -353,7 +353,7 @@ angular.module('ngAnimate', ['ng']) | |||
}) | |||
|
|||
//this private service is only used within CSS-enabled animations | |||
//IE8 + IE9 do not support rAF natively, but that is fine since they | |||
//IE9 do not support rAF natively, but that is fine since they |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Grammar: IE9 does not support...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, fixed.
aed4ba6
to
23f0648
Compare
2f55e3b
to
856e1fe
Compare
@@ -264,7 +264,7 @@ describe('$httpBackend', function() { | |||
|
|||
|
|||
it('should read responseText if response was not defined', function() { | |||
// old browsers like IE8, don't support responseType, so they always respond with responseText | |||
// old browsers like IE9, don't support responseType, so they always respond with responseText |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe it's only IE9 here, so we should call that out specifically. Unless we're trying to support Android < 4.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a workaround for Android < 4 in ngSniffer so it seems so.
c0b2547
to
10ba779
Compare
abdaab7
to
30996f8
Compare
2bfbfd6
to
2135920
Compare
2135920
to
2eeaf02
Compare
4dd5a20
to
998c61c
Compare
9bd3e89
to
02a28b0
Compare
02a28b0
to
b6bab30
Compare
b6bab30
to
5e41470
Compare
9287511
to
edf7d27
Compare
186bff9
to
3c10b80
Compare
@realityking I think you opened a new PR earlier this year which removed some comments regarding IE8. Does that obsolete this PR? |
Some of these are just comments that were explaining code removed in e843ae7. The most relevant (functional) change is the one to ngSanitize.
I've also removed adjusted some comments referring to IE8 and IE9 to only mention IE9.