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

chore() Remove more pieces of Opera < 15 support and document it #9483

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/misc/faq.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Yes. See instructions in {@link downloading}.

### What browsers does Angular work with?

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

Expand Down
2 changes: 1 addition & 1 deletion src/ng/sniffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function $SnifferProvider() {
boxee = /Boxee/i.test(($window.navigator || {}).userAgent),
document = $document[0] || {},
vendorPrefix,
vendorRegex = /^(Moz|webkit|O|ms)(?=[A-Z])/,
vendorRegex = /^(Moz|webkit|ms)(?=[A-Z])/,
bodyStyle = document.body && document.body.style,
transitions = false,
animations = false,
Expand Down
6 changes: 2 additions & 4 deletions test/ng/snifferSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ describe('$sniffer', function() {
body: {
style: {
WebkitAnimation: animationStyle,
MozAnimation: animationStyle,
OAnimation: animationStyle
MozAnimation: animationStyle
}
}
};
Expand Down Expand Up @@ -240,8 +239,7 @@ describe('$sniffer', function() {
body: {
style: {
WebkitTransition: transitionStyle,
MozTransition: transitionStyle,
OTransition: transitionStyle
MozTransition: transitionStyle
}
}
};
Expand Down