at line 71:
elem.style[$.cssProps.transform] = val+'%';
caused instructions like the one in the title to stop working properly.
Fixed this one by chaning it to:
if ( isNaN(val) ) elem.style[$.cssProps.transform] = val; else elem.style[$.cssProps.transform] = val+'%';