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:
jaubourg 2012-04-28 16:52:32 +02:00
parent 6fbb4b4339
commit 6ad53c33d8

View File

@ -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;