Merge branch 'master' of ssh://taler.net/var/git/wallet

Conflicts:
	wallet_webextension/extension/background/emscriptif.js
This commit is contained in:
Marcello Stanisci 2015-12-16 16:52:31 +01:00
commit 1c5cb38197
2 changed files with 3 additions and 3 deletions

View File

@ -363,7 +363,7 @@ class SignatureStruct {
constructor(x) {
this.members = {};
for (let k in x) {
this.set(x, x[k]);
this.set(k, x[k]);
}
}
toPurpose(a) {

View File

@ -517,9 +517,9 @@ abstract class SignatureStruct {
abstract purpose(): SignaturePurpose;
private members: any = {};
constructor(x: any) {
constructor(x: { [name: string]: any }) {
for (let k in x) {
this.set(x, x[k]);
this.set(k, x[k]);
}
}