aboutsummaryrefslogtreecommitdiffstats
path: root/src/css.js
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2012-04-28 16:52:32 +0200
committerjaubourg <j@ubourg.net>2012-04-28 16:52:32 +0200
commit6ad53c33d8fb4fa2f8adeef3d756875e4832f8a4 (patch)
treef99e56b6b47f5c3f12af7d42cd4d118acec172f1 /src/css.js
parent6fbb4b4339a6ae51423d9600ef3517b594bec523 (diff)
downloadjquery-6ad53c33d8fb4fa2f8adeef3d756875e4832f8a4.tar.gz
jquery-6ad53c33d8fb4fa2f8adeef3d756875e4832f8a4.zip
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).
Diffstat (limited to 'src/css.js')
-rw-r--r--src/css.js2
1 files changed, 1 insertions, 1 deletions
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;