ohif-viewer/Packages/viewerbase/lib/helpers/formatNumberPrecision.js
2015-11-06 15:29:09 +01:00

5 lines
166 B
JavaScript

UI.registerHelper('formatNumberPrecision', function(context, precision, options) {
if (context) {
return parseFloat(context).toFixed(precision);
}
});