Commit 531586be by Jon Skarpeteig Committed by GitHub

Add Norwegian Krone denominator for currency

See http://www.xe.com/symbols.php for currency symbols reference
parent 0841eb94
...@@ -402,6 +402,7 @@ function($, _, moment) { ...@@ -402,6 +402,7 @@ function($, _, moment) {
kbn.valueFormats.currencyRUB = kbn.formatBuilders.currency('₽'); kbn.valueFormats.currencyRUB = kbn.formatBuilders.currency('₽');
kbn.valueFormats.currencyUAH = kbn.formatBuilders.currency('₴'); kbn.valueFormats.currencyUAH = kbn.formatBuilders.currency('₴');
kbn.valueFormats.currencyBRL = kbn.formatBuilders.currency('R$'); kbn.valueFormats.currencyBRL = kbn.formatBuilders.currency('R$');
kbn.valueFormats.currencyNOK = kbn.formatBuilders.currency('kr');
// Data (Binary) // Data (Binary)
kbn.valueFormats.bits = kbn.formatBuilders.binarySIPrefix('b'); kbn.valueFormats.bits = kbn.formatBuilders.binarySIPrefix('b');
...@@ -756,6 +757,7 @@ function($, _, moment) { ...@@ -756,6 +757,7 @@ function($, _, moment) {
{text: 'Rubles (₽)', value: 'currencyRUB'}, {text: 'Rubles (₽)', value: 'currencyRUB'},
{text: 'Hryvnias (₴)', value: 'currencyUAH'}, {text: 'Hryvnias (₴)', value: 'currencyUAH'},
{text: 'Real (R$)', value: 'currencyBRL'}, {text: 'Real (R$)', value: 'currencyBRL'},
{text: 'Norwegian Krone (kr)', value: 'currencyNOK'},
] ]
}, },
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment