We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b87bc00 commit 8dd598cCopy full SHA for 8dd598c
src/directives/internal/style.js
@@ -100,9 +100,6 @@ function prefix (prop) {
100
if (!testEl) {
101
testEl = document.createElement('div')
102
}
103
- if (camel in testEl.style) {
104
- return prop
105
- }
106
var i = prefixes.length
107
var prefixed
108
while (i--) {
@@ -111,4 +108,7 @@ function prefix (prop) {
111
return prefixes[i] + prop
112
109
113
110
+ if (camel in testEl.style) {
+ return prop
+ }
114
0 commit comments