FEATURE: add ZAR currency support (#199)
This commit is contained in:
+1
@@ -41,6 +41,7 @@ export default Controller.extend({
|
||||
{ id: "DKK", name: "DKK" },
|
||||
{ id: "SGD", name: "SGD" },
|
||||
{ id: "JPY", name: "JPY" },
|
||||
{ id: "ZAR", name: "ZAR" },
|
||||
];
|
||||
},
|
||||
|
||||
|
||||
@@ -28,6 +28,10 @@ export default Helper.helper(function (params) {
|
||||
case "sgd":
|
||||
currencySign = "S$";
|
||||
break;
|
||||
case "ZAR":
|
||||
case "zar":
|
||||
currencySign = "R";
|
||||
break;
|
||||
default:
|
||||
currencySign = "$";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user