Content deleted Content added
mNo edit summary |
mNo edit summary |
||
Line 65:
// Space before horsepower symbol
txt.value = txt.value.replace(/(\d)\s?hp(\W)/gi, '$1 hp$2');
txt.value = txt.value.replace(/(\d)\s?bhp/gi, '$1 bhp');
txt.value = txt.value.replace(/(\d)\s?shp/gi, '$1 shp');
|