We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 042e351 commit 743bc80Copy full SHA for 743bc80
Angular2/ClientApp/app/models/Book.ts
@@ -52,17 +52,10 @@ export class Book extends BookBaseViewModel {
52
characters: string[];
53
series: SeriesBaseViewModel[];
54
55
- charactersAsString: () => string;
56
seriesWithLineBreaksAndAnchors: () =>string;
57
charactersWithLineBreaks: () => string;
58
- getImageData: () => void;
59
60
registerFunctions = () => {
61
- this.charactersAsString = () => {
62
- return this.characters.length > 0
63
- ? this.characters.join(',')
64
- : '';
65
- };
66
67
this.seriesWithLineBreaksAndAnchors = () => {
68
if (this.series.length == 0) {
0 commit comments