better vendors order

This commit is contained in:
Vadim Makeev 2011-12-12 21:13:08 +04:00
parent 0b211ae77b
commit f505ffab8f
1 changed files with 2 additions and 2 deletions

View File

@ -23,10 +23,10 @@
}
function applyTransform(transform) {
body.style.MozTransform = transform;
body.style.WebkitTransform = transform;
body.style.OTransform = transform;
body.style.MozTransform = transform;
body.style.msTransform = transform;
body.style.OTransform = transform;
body.style.transform = transform;
}