|
|
@@ -112,6 +112,12 @@ function prefix (prop) {
|
|
|
}
|
|
|
var i = prefixes.length
|
|
|
var prefixed
|
|
|
+ if (camel !== 'filter' && (camel in testEl.style)) {
|
|
|
+ return {
|
|
|
+ kebab: prop,
|
|
|
+ camel: camel
|
|
|
+ }
|
|
|
+ }
|
|
|
while (i--) {
|
|
|
prefixed = camelPrefixes[i] + upper
|
|
|
if (prefixed in testEl.style) {
|
|
|
@@ -121,10 +127,4 @@ function prefix (prop) {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if (camel in testEl.style) {
|
|
|
- return {
|
|
|
- kebab: prop,
|
|
|
- camel: camel
|
|
|
- }
|
|
|
- }
|
|
|
}
|