this bug 6339 was fixed

This commit is contained in:
Carlos Pacha
2011-03-03 21:07:12 +00:00
parent c427b44f48
commit 1ec5c0fde8

View File

@@ -542,10 +542,11 @@ function isNumberMask (mask){
var spaceString;
if (me.element.value.substr( (me.element.value.length -1) ,me.element.value.length) == '%' ){
spaceString ='';
me.element.value = onlynumber + spaceString + maskWithoutPto.substr( (maskWithoutPto.length -1) ,maskWithoutPto.length);
} else {
spaceString =' ';
me.element.value = onlynumber;
}
me.element.value = onlynumber + spaceString + maskWithoutPto.substr( (maskWithoutPto.length -1) ,maskWithoutPto.length);
}
}
}