'use strict'; angular.module('fehlerberichtApp').filter("euro", function () { return function (num) { if (num !== null) { return num.toFixed(2).toString().replace(".", ","); } return "0,00"; }; }); angular.module('fehlerberichtApp') .controller('MainCtrl', function ($scope) { });