mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
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).
This commit is contained in:
parent
6fbb4b4339
commit
6ad53c33d8
@ -15,7 +15,7 @@ var ralpha = /alpha\([^)]*\)/i,
|
|||||||
|
|
||||||
// order is important!
|
// order is important!
|
||||||
cssExpand = jQuery.cssExpand,
|
cssExpand = jQuery.cssExpand,
|
||||||
cssPrefixes = [ "O", "Webkit", "Moz", "ms" ],
|
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
|
||||||
|
|
||||||
curCSS;
|
curCSS;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user