Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiecoorp/8750248 to your computer and use it in GitHub Desktop.
Save kiecoorp/8750248 to your computer and use it in GitHub Desktop.
angular.module('app').filter('floatdigit', function(){
return function(value, showsymbol) {
var number = parseFloat(value);
var symbol = (typeof showsymbol != "undefined" && showsymbol) ? ' €' : '';
if (parseFloat(number.toFixed(2)) === parseFloat(number.toFixed(3))) return number.toFixed(2)+symbol;
return number.toFixed(3)+symbol;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment