Skip to content
Snippets Groups Projects
Commit e27660f9 authored by rhenck's avatar rhenck
Browse files

Fix paths

parent e0bb16c0
No related branches found
No related tags found
No related merge requests found
...@@ -2,11 +2,11 @@ import { ...@@ -2,11 +2,11 @@ import {
Component, EventEmitter, Input, Output, ViewChild Component, EventEmitter, Input, Output, ViewChild
} from '@angular/core'; } from '@angular/core';
import { FormGroup } from '@angular/forms'; import { FormGroup } from '@angular/forms';
import { ValueChangeElement } from '../../models/uI-element'; import { ValueChangeElement } from '../models/uI-element';
import { ToggleButtonElement } from '../../ui-elements/toggle-button/toggle-button'; import { ToggleButtonElement } from '../ui-elements/toggle-button/toggle-button';
import { TextFieldSimpleElement } from '../../ui-elements/textfield-simple/text-field-simple-element'; import { TextFieldSimpleElement } from '../ui-elements/textfield-simple/text-field-simple-element';
import { DropListSimpleElement } from '../../ui-elements/drop-list-simple/drop-list-simple'; import { DropListSimpleElement } from '../ui-elements/drop-list-simple/drop-list-simple';
import { ElementComponent } from '../element-component.directive'; import { ElementComponent } from '../directives/element-component.directive';
@Component({ @Component({
selector: 'app-compound-child-overlay', selector: 'app-compound-child-overlay',
......
...@@ -5,7 +5,7 @@ import { ...@@ -5,7 +5,7 @@ import {
import { FormGroup } from '@angular/forms'; import { FormGroup } from '@angular/forms';
import { ElementComponent } from './element-component.directive'; import { ElementComponent } from './element-component.directive';
import { InputElement, ValueChangeElement } from '../models/uI-element'; import { InputElement, ValueChangeElement } from '../models/uI-element';
import { CompoundChildOverlayComponent } from './cloze-child-overlay/compound-child-overlay.component'; import { CompoundChildOverlayComponent } from '../components/compound-child-overlay.component';
import { LikertRadioButtonGroupComponent } from '../ui-elements/likert/likert-radio-button-group.component'; import { LikertRadioButtonGroupComponent } from '../ui-elements/likert/likert-radio-button-group.component';
@Directive({ selector: 'app-compound-element' }) @Directive({ selector: 'app-compound-element' })
......
...@@ -52,7 +52,7 @@ import { ToggleButtonComponent } from './ui-elements/toggle-button/toggle-button ...@@ -52,7 +52,7 @@ import { ToggleButtonComponent } from './ui-elements/toggle-button/toggle-button
import { MarkingBarComponent } from './components/marking-bar/marking-bar.component'; import { MarkingBarComponent } from './components/marking-bar/marking-bar.component';
import { StyleMarksPipe } from './ui-elements/cloze/styleMarks.pipe'; import { StyleMarksPipe } from './ui-elements/cloze/styleMarks.pipe';
import { MarkingButtonComponent } from './components/marking-bar/marking-button.component'; import { MarkingButtonComponent } from './components/marking-bar/marking-button.component';
import { CompoundChildOverlayComponent } from './directives/cloze-child-overlay/compound-child-overlay.component'; import { CompoundChildOverlayComponent } from './components/compound-child-overlay.component';
@NgModule({ @NgModule({
imports: [ imports: [
......
...@@ -4,7 +4,7 @@ import { ...@@ -4,7 +4,7 @@ import {
import { ClozeElement } from './cloze-element'; import { ClozeElement } from './cloze-element';
import { CompoundElementComponent } from '../../directives/compound-element.directive'; import { CompoundElementComponent } from '../../directives/compound-element.directive';
import { InputElement } from '../../models/uI-element'; import { InputElement } from '../../models/uI-element';
import { CompoundChildOverlayComponent } from '../../directives/cloze-child-overlay/compound-child-overlay.component'; import { CompoundChildOverlayComponent } from '../../components/compound-child-overlay.component';
import { ElementComponent } from '../../directives/element-component.directive'; import { ElementComponent } from '../../directives/element-component.directive';
@Component({ @Component({
......
...@@ -14,7 +14,7 @@ import { CompoundElementComponent } from ...@@ -14,7 +14,7 @@ import { CompoundElementComponent } from
'../../../../../../../../common/directives/compound-element.directive'; '../../../../../../../../common/directives/compound-element.directive';
import { ClozeComponent } from '../../../../../../../../common/ui-elements/cloze/cloze.component'; import { ClozeComponent } from '../../../../../../../../common/ui-elements/cloze/cloze.component';
import { ClozeElement } from '../../../../../../../../common/ui-elements/cloze/cloze-element'; import { ClozeElement } from '../../../../../../../../common/ui-elements/cloze/cloze-element';
import { CompoundChildOverlayComponent } from '../../../../../../../../common/directives/cloze-child-overlay/compound-child-overlay.component'; import { CompoundChildOverlayComponent } from '../../../../../../../../common/components/compound-child-overlay.component';
@Directive() @Directive()
export abstract class CanvasElementOverlay implements OnInit, OnDestroy { export abstract class CanvasElementOverlay implements OnInit, OnDestroy {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment