Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Opera announced they will start supporting the -webkit- prefix for a …
…selected set of css properties. Let's put the inspection of -webkit- prefix properties as the last one in case this propagates to the style object and/or other browsers (the cssPrefixes array is inspected from right to left).
  • Loading branch information
jaubourg committed Apr 28, 2012
1 parent 6fbb4b4 commit 6ad53c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/css.js
Expand Up @@ -15,7 +15,7 @@ var ralpha = /alpha\([^)]*\)/i,

// order is important!
cssExpand = jQuery.cssExpand,
cssPrefixes = [ "O", "Webkit", "Moz", "ms" ],
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],

curCSS;

Expand Down

4 comments on commit 6ad53c3

@staabm
Copy link
Contributor

@staabm staabm commented on 6ad53c3 Apr 28, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can u provide a ref to an offical statement of opera?

@jaubourg
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rwaldron
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good call.

@staabm
Copy link
Contributor

@staabm staabm commented on 6ad53c3 Apr 28, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thx

Please sign in to comment.