123456789101112131415 |
- '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) {
- });
|