User profile editing and password

This commit is contained in:
2016-09-26 11:13:59 -04:00
parent 6789c1b3b5
commit 75b7c02979
54 changed files with 373 additions and 209 deletions
@@ -1,11 +1,13 @@
(function() {
window.app.filter('formatCases',
window.app.filter("formatCases",
[
function() {
return function(qty) {
if (qty === '' || !isFinite(qty))
return '';
if (qty === "" || !isFinite(qty))
return "";
return '(' + qty + ' cs)';
}
});
return "(" + qty + " cs)";
};
}
]);
})();