Question:
The custom-annotations ruler annotation displays the measurement in cm's. For example "23.02cm".
How can I get it to display pt's instead?
Answer:
In the file samples/annotation/custom-annotations/ruler.js you would remove the following two lines
var inches = (distance / 72).toFixed(2); // assume 72 dpi
var distanceText = (inches / 0.39370).toFixed(2) + 'cm';
And replace with
var distanceText = distance.toFixed(2) + 'pts';