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

Commit 2dd9e24

Browse files
committed
chore() Remove more pieces of Opera < 15 support and document it
1 parent c93924e commit 2dd9e24

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

docs/content/misc/faq.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Yes. See instructions in {@link downloading}.
5050

5151
### What browsers does Angular work with?
5252

53-
We run our extensive test suite against the following browsers: Safari, Chrome, Firefox, Opera,
53+
We run our extensive test suite against the following browsers: Safari, Chrome, Firefox, Opera 15,
5454
IE9 and mobile browsers (Android, Chrome Mobile, iOS Safari). See {@link guide/ie Internet
5555
Explorer Compatibility} for more details in supporting legacy IE browsers.
5656

src/ng/sniffer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function $SnifferProvider() {
2424
document = $document[0] || {},
2525
documentMode = document.documentMode,
2626
vendorPrefix,
27-
vendorRegex = /^(Moz|webkit|O|ms)(?=[A-Z])/,
27+
vendorRegex = /^(Moz|webkit|ms)(?=[A-Z])/,
2828
bodyStyle = document.body && document.body.style,
2929
transitions = false,
3030
animations = false,

test/ng/snifferSpec.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,7 @@ describe('$sniffer', function() {
254254
body : {
255255
style : {
256256
WebkitTransition : transitionStyle,
257-
MozTransition : transitionStyle,
258-
OTransition : transitionStyle
257+
MozTransition : transitionStyle
259258
}
260259
}
261260
};

0 commit comments

Comments
 (0)