Can you possibly do something like this in angular?
It\'s not quite possib
It's actually possible to do this
or wrap it around the native currency filter like this
app.filter('currencys', ['$filter', '$locale',
function($filter, $locale) {
return function (num) {
var sym = $locale.NUMBER_FORMATS.CURRENCY_SYM;
return $filter('currency')(num, ''+ sym +'');
};
}
]);
and then use it like this