Update kute-dev.js

This commit is contained in:
thednp 2015-10-03 22:02:25 +03:00
parent eec0a2751a
commit 2a15904963

View file

@ -323,7 +323,7 @@
}
css[p] = 'rect('+cl+')';
} else if ( op ) {
css[opp] = _isIE8 ? "alpha(opacity=" + parseInt(tv*100) + ")" : tv;
css[opp] = !_isIE8 ? tv : "alpha(opacity=" + parseInt(tv*100) + ")";
}
}
@ -723,8 +723,8 @@
function getU() {
var u,i=0;
for (i;i<l;i++) { if ( typeof d !== 'number' && d.indexOf(mu[i]) !== -1 ) u = mu[i]; }
u = u !== undefined ? u : (p ? 'deg' : 'px');
for (i;i<l;i++) { if ( typeof d === 'string' && d.indexOf(mu[i]) !== -1 ) u = mu[i]; }
u = u !== undefined ? u : (p ? 'deg' : 'px')
return u;
}
return { v: x, u: y };