Skip to content

Commit e50c070

Browse files
mgolAurelioDeRosa
authored andcommitted
jQuery.cssHooks: remove the "O" Opera prefix
jQuery 3.0+ doesn't support Opera Presto (versions <=12.x) so including its prefix in the docs doesn't make much sense. Closes jquerygh-1069
1 parent 576a64b commit e50c070

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entries/jQuery.cssHooks.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function styleSupport( prop ) {
4545

4646
// Capitalize first character of the prop to test vendor prefix
4747
capProp = prop.charAt( 0 ).toUpperCase() + prop.slice( 1 ),
48-
prefixes = [ "Moz", "Webkit", "O", "ms" ],
48+
prefixes = [ "Moz", "Webkit", "ms" ],
4949
div = document.createElement( "div" );
5050

5151
if ( prop in div.style ) {
@@ -89,7 +89,7 @@ if ( !$.cssHooks ) {
8989
function styleSupport( prop ) {
9090
var vendorProp, supportedProp,
9191
capProp = prop.charAt( 0 ).toUpperCase() + prop.slice( 1 ),
92-
prefixes = [ "Moz", "Webkit", "O", "ms" ],
92+
prefixes = [ "Moz", "Webkit", "ms" ],
9393
div = document.createElement( "div" );
9494

9595
if ( prop in div.style ) {

0 commit comments

Comments
 (0)