diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-03-01 19:46:20 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-03-01 19:56:41 +0100 |
commit | 1cca800254bca4b34e911f252223ef0456dd95d7 (patch) | |
tree | 23e55fdbb0d07146b7425a4a25664fdc17bce76f /pages | |
parent | 5c600904f5d30773f5700f1df934d5235558b2eb (diff) |
add author
Diffstat (limited to 'pages')
-rw-r--r-- | pages/confirm-contract.tsx | 9 | ||||
-rw-r--r-- | pages/confirm-create-reserve.tsx | 8 | ||||
-rw-r--r-- | pages/show-db.ts | 6 |
3 files changed, 22 insertions, 1 deletions
diff --git a/pages/confirm-contract.tsx b/pages/confirm-contract.tsx index ff6ffba64..9ce1b0a5a 100644 --- a/pages/confirm-contract.tsx +++ b/pages/confirm-contract.tsx @@ -14,6 +14,13 @@ TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ +/** + * Page shown to the user to confirm entering + * a contract. + * + * @author Florian Dold + */ + /// <reference path="../lib/decl/handlebars/handlebars.d.ts" /> "use strict"; @@ -79,4 +86,4 @@ export function main() { offer); }); } -}
\ No newline at end of file +} diff --git a/pages/confirm-create-reserve.tsx b/pages/confirm-create-reserve.tsx index 914f58cad..5ed97db04 100644 --- a/pages/confirm-create-reserve.tsx +++ b/pages/confirm-create-reserve.tsx @@ -14,6 +14,14 @@ TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ + +/** + * Page shown to the user to confirm creation + * of a reserve, usually requested by the bank. + * + * @author Florian Dold + */ + /// <reference path="../lib/decl/mithril.d.ts" /> import {amountToPretty, canonicalizeBaseUrl} from "../lib/wallet/helpers"; diff --git a/pages/show-db.ts b/pages/show-db.ts index 1c414dde7..c99d2f2b3 100644 --- a/pages/show-db.ts +++ b/pages/show-db.ts @@ -15,6 +15,12 @@ */ +/** + * Wallet database dump for debugging. + * + * @author Florian Dold + */ + function replacer(match, pIndent, pKey, pVal, pEnd) { var key = '<span class=json-key>'; var val = '<span class=json-value>'; |