Skip to content

Commit 8e12c78

Browse files
committed
Fix sochka's mistakes
P.S. Windows sucks
1 parent 50842c2 commit 8e12c78

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

public/app/newcard.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Component, OnInit} from 'angular2/core';
22
import {RouteParams, Router} from 'angular2/router';
3-
import {Card} from './Card';
3+
import {Card} from './card';
44
import {CardsService} from './cards.service';
55

66
@Component({
@@ -33,4 +33,4 @@ export class NewCardComponent implements OnInit {
3333
+ this.card.question.substring(selectionEnd);
3434
this.card.answer = document.getSelection().toString();
3535
}
36-
}
36+
}

public/app/newextract.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Component, OnInit} from 'angular2/core';
22
import {RouteParams, Router} from 'angular2/router';
3-
import {Extract} from './Extract';
3+
import {Extract} from './extract';
44
import {ExtractsService} from './extracts.service';
55

66
@Component({
@@ -28,4 +28,4 @@ export class NewExtractComponent implements OnInit {
2828
this._extractsService.addExtract(this.extract);
2929
this._router.navigate(['Article', {id: articleId}]);
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)