diff --git a/docs/content/misc/faq.ngdoc b/docs/content/misc/faq.ngdoc index 8aa69e9602a2..510093575c40 100644 --- a/docs/content/misc/faq.ngdoc +++ b/docs/content/misc/faq.ngdoc @@ -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. diff --git a/src/ng/sniffer.js b/src/ng/sniffer.js index 07955422813e..6b2ea859eb4c 100644 --- a/src/ng/sniffer.js +++ b/src/ng/sniffer.js @@ -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, diff --git a/test/ng/snifferSpec.js b/test/ng/snifferSpec.js index 2598b8dff6e3..7d48bc79ffea 100644 --- a/test/ng/snifferSpec.js +++ b/test/ng/snifferSpec.js @@ -143,8 +143,7 @@ describe('$sniffer', function() { body: { style: { WebkitAnimation: animationStyle, - MozAnimation: animationStyle, - OAnimation: animationStyle + MozAnimation: animationStyle } } }; @@ -240,8 +239,7 @@ describe('$sniffer', function() { body: { style: { WebkitTransition: transitionStyle, - MozTransition: transitionStyle, - OTransition: transitionStyle + MozTransition: transitionStyle } } };