diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-01-24 02:29:13 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-01-24 02:29:13 +0100 |
commit | b8627813be56e04c18baf38885f3a3dc0fb7496c (patch) | |
tree | e2db304d381cc343021a8af8c94b58e3554fbcc5 /extension/lib/commonHelpers.ts | |
parent | 1a0a302ad9bfd49ff452bf874e04b7623e23cb5f (diff) |
Replace handlebars with mithril, hooks for i18n.
The wallet is now a single page application.
Diffstat (limited to 'extension/lib/commonHelpers.ts')
-rw-r--r-- | extension/lib/commonHelpers.ts | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/extension/lib/commonHelpers.ts b/extension/lib/commonHelpers.ts deleted file mode 100644 index 4974778b9..000000000 --- a/extension/lib/commonHelpers.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* - This file is part of TALER - (C) 2016 GNUnet e.V. - - TALER is free software; you can redistribute it and/or modify it under the - terms of the GNU General Public License as published by the Free Software - Foundation; either version 3, or (at your option) any later version. - - TALER is distributed in the hope that it will be useful, but WITHOUT ANY - WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. See the GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along with - TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> - */ - -Handlebars.registerHelper("prettyAmount", function (amount) { - let v = amount.value + amount.fraction / 1e6; - return `${v.toFixed(2)} ${amount.currency}`; -}); - -Handlebars.registerHelper("prettyAmountNoCurrency", function (amount) { - let v = amount.value + amount.fraction / 1e6; - return v.toFixed(2); -}); - -Handlebars.registerHelper('objectStringifier', function (o) { - return JSON.stringify(o); -}); |