Fix more namespaces that were missed in the first pass

This commit is contained in:
Bryan Housel
2016-10-04 21:15:30 -04:00
parent 66348e4a18
commit 0d0e54fdff
23 changed files with 54 additions and 55 deletions
+2 -2
View File
@@ -118,8 +118,8 @@ export function utilPrefixCSSProperty(property) {
var transformProperty;
export function utilSetTransform(el, x, y, scale) {
var prop = transformProperty = transformProperty || prefixCSSProperty('Transform'),
translate = Detect().opera ?
var prop = transformProperty = transformProperty || utilPrefixCSSProperty('Transform'),
translate = utilDetect().opera ?
'translate(' + x + 'px,' + y + 'px)' :
'translate3d(' + x + 'px,' + y + 'px,0)';
return el.style(prop, translate + (scale ? ' scale(' + scale + ')' : ''));