Add transaction type

This commit is contained in:
2016-08-31 12:08:22 -04:00
parent c86d7fb1ed
commit f5e438e994
8 changed files with 95 additions and 38 deletions
@@ -0,0 +1,10 @@
(function () {
window.app.filter('hideZero', hideZero);
function hideZero() {
return function (input) {
return input > 0 ? input : '';
}
}
})();