2
0

fundamental animations working

This commit is contained in:
2018-08-08 19:52:42 +02:00
parent 7db484b55e
commit d8714d0606
6 changed files with 80 additions and 53 deletions

View File

@@ -38,16 +38,11 @@ export class HistoryService {
}
public hash(graphs) {
return btoa(JSON.stringify([graphs]));
return btoa(JSON.stringify(graphs));
}
public list() {
return this.history;
}
public restore(graphs: Graph[]) {
console.log(graphs);
}
}