mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 08:57:59 -05: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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user