From 6ad53c33d8fb4fa2f8adeef3d756875e4832f8a4 Mon Sep 17 00:00:00 2001 From: jaubourg Date: Sat, 28 Apr 2012 16:52:32 +0200 Subject: [PATCH] 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). --- src/css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css.js b/src/css.js index c3a6f7725..ba0042dff 100644 --- a/src/css.js +++ b/src/css.js @@ -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;