main.js 336 B

123456789101112131415
  1. 'use strict';
  2. angular.module('fehlerberichtApp').filter("euro", function () {
  3. return function (num) {
  4. if (num !== null) {
  5. return num.toFixed(2).toString().replace(".", ",");
  6. }
  7. return "0,00";
  8. };
  9. });
  10. angular.module('fehlerberichtApp')
  11. .controller('MainCtrl', function ($scope) {
  12. });