diff options
author | jaubourg <j@ubourg.net> | 2012-04-28 16:52:32 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2012-04-28 16:52:32 +0200 |
commit | 6ad53c33d8fb4fa2f8adeef3d756875e4832f8a4 (patch) | |
tree | f99e56b6b47f5c3f12af7d42cd4d118acec172f1 /src/css.js | |
parent | 6fbb4b4339a6ae51423d9600ef3517b594bec523 (diff) | |
download | jquery-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.js | 2 |
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; |