User profile editing and password
This commit is contained in:
@@ -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)";
|
||||
};
|
||||
}
|
||||
]);
|
||||
})();
|
||||
Reference in New Issue
Block a user