Content deleted Content added
mNo edit summary |
mNo edit summary |
||
Line 55:
// Standardise miles per hour and rpm
txt.value = txt.value.replace(/m\.p\.h\./gi, 'mph');
txt.value = txt.value.replace(/mph/gi, 'mph');
txt.value = txt.value.replace(/(\d)\s?mph/gi, '$1 mph');
|