Page MenuHomec4science

app.component.ts
No OneTemporary

File Metadata

Created
Mon, Jun 3, 16:35

app.component.ts

import { Component } from '@angular/core';
import { QueryService } from './services/query.service';
import { InfoService } from './services/info.service';
import { WordService } from './services/field-interaction.service';
import { OptionService } from './services/options.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
providers: [QueryService, WordService, OptionService, InfoService]
})
export class AppComponent {
title = 'svg-test-app';
image = { height: 973.91998, width: 2038.5601, file_name: "/assets/W-II-1,131et132.jpg" };
text_field = { left: 358.805, top: 78.051, width: 662.761, height: 831.879 };
manuscript = { title: 'W II 1',
pages: [
{ number: '131',
metadata: [
{ head: { description: 'Stellenkommentar'}, content: [ { reference: '2', quote: 'Leben Thomas Carlyle’s', text: 'vgl. Froude, Das Leben Thomas Carlyles'} ]},
{ head: { description: 'Druckorte' }, content: [ { reference: '24-34', text: 'KGW VIII 9[11]'}, { reference: '34-40', text:'KGW VIII 9[12]'} ]}
]
}
]
};
}

Event Timeline