|
|
@@ -100,9 +100,6 @@ function prefix (prop) {
|
|
|
if (!testEl) {
|
|
|
testEl = document.createElement('div')
|
|
|
}
|
|
|
- if (camel in testEl.style) {
|
|
|
- return prop
|
|
|
- }
|
|
|
var i = prefixes.length
|
|
|
var prefixed
|
|
|
while (i--) {
|
|
|
@@ -111,4 +108,7 @@ function prefix (prop) {
|
|
|
return prefixes[i] + prop
|
|
|
}
|
|
|
}
|
|
|
+ if (camel in testEl.style) {
|
|
|
+ return prop
|
|
|
+ }
|
|
|
}
|